Noticed because an incidental update of my local tibble caused pretty catastrophic test failure in tidyr, whose release / revdeps I'm working on. I'm at current HEAD of tibble here.
devtools::load_all("~/rrr/tibble")
#> Loading tibble
df <- tibble(x = 1:2, y = list(a = 1, b = 1:2))
df$y
#> [[1]]
#> [1] 1
#>
#> [[2]]
#> [1] 1 2
names(df$y)
#> NULL
Created on 2019-08-07 by the reprex package (v0.3.0.9000)
Noticed because an incidental update of my local tibble caused pretty catastrophic test failure in tidyr, whose release / revdeps I'm working on. I'm at current HEAD of tibble here.
Created on 2019-08-07 by the reprex package (v0.3.0.9000)