Aliases: check_dots_empty
Keywords:
### ** Examples f <- function(x, ..., foofy = 8) { check_dots_empty() x + foofy } try(f(1, foof = 4))
Error in f(1, foof = 4) : `...` must be empty. ✖ Problematic argument: • foof = 4
f(1, foofy = 4)
[1] 5