holgerbrandl / r4intellij

An integration of the R programming language into Intellij IDEA
BSD 2-Clause "Simplified" License
148 stars 28 forks source link

Wrong warning 'unused parameter' for ... #214

Open rillig opened 5 years ago

rillig commented 5 years ago
messagef <- function(fmt, ...)
  message(sprintf(fmt, ...))

messagef('hello')

image

The parameter is obviously used, therefore the warning is wrong.