i.e. the following code should generate errors: ``` r library(tibble) df <- tibble(x = 1, y = 2) names(df) <- "x" names(df) <- c("x", "x") names(df) <- c("", "") ```
i.e. the following code should generate errors: