Details
-
Bug
-
Resolution: Fixed
-
P4
-
8
-
b82
-
Verified
Description
This program should not compile:
class Test {
void m(Object... o) { }
class Inner {
void m(String s) {
m(1, 1); //should fail
}
}
}
class Test {
void m(Object... o) { }
class Inner {
void m(String s) {
m(1, 1); //should fail
}
}
}