G
Gianni Galore
Am I crazy? I setup just the most simple java program in a new v3.6.2 Eclipse java project:
package aaa.bbb;
public static void main( String[] args) {
System.out.println("hello");
}
And Eclipse thinks the line
public static void main( String[] args) {
contains already an error (indicating a white x on red dot). When hovering above the red ot the Eclipse tells me:
- Syntax error, insert ")" to complete SimpleMemberAbnnotation
- Syntax error on toker "]", invalid(
- ...
Hmm, whats wrong? Eclipse does not like the brackets after "String[]"
I guess its a wrong Eclipse setting for the Java project but which?
I use J2SE v1.6upd26 under Win7
Gianni
package aaa.bbb;
public static void main( String[] args) {
System.out.println("hello");
}
And Eclipse thinks the line
public static void main( String[] args) {
contains already an error (indicating a white x on red dot). When hovering above the red ot the Eclipse tells me:
- Syntax error, insert ")" to complete SimpleMemberAbnnotation
- Syntax error on toker "]", invalid(
- ...
Hmm, whats wrong? Eclipse does not like the brackets after "String[]"
I guess its a wrong Eclipse setting for the Java project but which?
I use J2SE v1.6upd26 under Win7
Gianni