Mathias Ricken
-
2010-04-10
- priority: 5 --> 7
When compiling the program
class DJ2DebugTest {
public static void main(String[] args) {
System.out.println("DJ2DebugTest");
}
}
the language levels converter generates the error:
1 error found:
File: /Users/mgricken/Desktop/debugTest/DJ2DebugTest.dj2 [line: 3]
Error: Cannot access the non-static method println from a static context
This is incorrect. println is non-static, but out is static.