-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: repo-amber
-
Component/s: tools
-
generic
-
generic
The following program triggers an error:
public class X {
public static void main(String [] args) {
int len(String [] a) {
return a.length;
}
System.out.println("Len = " + len(args));
}
}
About System.out.println not being reachable
public class X {
public static void main(String [] args) {
int len(String [] a) {
return a.length;
}
System.out.println("Len = " + len(args));
}
}
About System.out.println not being reachable