We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
object Foo { def foo[U](a: Int, b: Double)(c: Boolean, d: String)(e: Object): Int = 1 }
will generate the signature public <U> int Foo$.foo(int,double) which misses all parameters not in the first parameter list.
public <U> int Foo$.foo(int,double)