blob: c2c4d3f9b7d6de52142d045a8e6cc54ad4e85da0 (
plain)
1
2
3
4
5
6
7
8
|
public class C {
public static void main(String []argv) {
Object[] before;
before = new Object[10];
before[0].toString(); // Eclipse: Syntax error on token "before", invalid
}
}
|