E.g. ``` R #' @export rbind.foobar <- function(..., deparse.level = 1) { print("hello") } ``` `roxygen2` doesn't detect that `rbind` is an S3 generic, and so emits `export(rbind.foobar)` rather than `S3method(rbind,foobar)`.