-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
P4
-
Affects Version/s: repo-amber
-
Component/s: tools
-
generic
-
generic
The following program compiles fine while it should not:
public class X {
public static void main(String [] args) {
@Override
void xxx (int y) {
}
@Override
int X(int y) {
return y;
}
}
}
public class X {
public static void main(String [] args) {
@Override
void xxx (int y) {
}
@Override
int X(int y) {
return y;
}
}
}