Here is another compiler crash... to my surpise it doesn't seem to have been entered already, although a similar report ( 1232045 crash when cannot find class ) has been fixed. The backtrace is the same as for 1232045, but this one still happens, where I've verified 1232045 does not. Perhaps this has something to do with the fact that there is no main() here?
The code is of course perposterous.
// test1.java: crash the compiler after Class not found in void ...
class xxx.test1 {
static void test (String xxx) {
System.out.println(xxx);
}
}
class test2 {
static void testx () {
System.out.println("This is test2. How do I get test1?");
test1 varA;
varA = new test1();
varA.test("Hello World!!!");
}
}
The above file results in:
hagen@mile[1369]: javac test1.java
test1.java:1: '{' expected.
class xxx.test1 {
^
java.lang.NullPointerException
at sun.tools.tree.MethodExpression.inline(MethodExpression.java:248)
at sun.tools.tree.ExpressionStatement.inline(ExpressionStatement.java:51)
at sun.tools.tree.CompoundStatement.inline(CompoundStatement.java:65)
at sun.tools.javac.SourceField.inline(SourceField.java:293)
at sun.tools.javac.SourceField.code(SourceField.java:367)
at sun.tools.javac.SourceClass.compileClass(SourceClass.java:564)
at sun.tools.javac.SourceClass.compile(SourceClass.java:527)
at sun.tools.javac.Main.compile(Main.java:193)
at sun.tools.javac.Main.main(Main.java:289)
.//test1.java:1: Class xxx already defined in test1.java.
class xxx.test1 {
^
.//test1.java:1: '{' expected.
class xxx.test1 {
^
.//test1.java:7: Class test2 already defined in test1.java.
class test2 {
^
.//test1.java:10: Class test1 not found in type declaration.
test1 varA;
^
.//test1.java:11: Class test1 not found in new.
varA = new test1();
^
.//test1.java:12: Class test1 not found in void testx().
varA.test("Hello World!!!");
^
error: An exception has occurred in the compiler; please file a bug report (###@###.###).
8 errors
The code is of course perposterous.
// test1.java: crash the compiler after Class not found in void ...
class xxx.test1 {
static void test (String xxx) {
System.out.println(xxx);
}
}
class test2 {
static void testx () {
System.out.println("This is test2. How do I get test1?");
test1 varA;
varA = new test1();
varA.test("Hello World!!!");
}
}
The above file results in:
hagen@mile[1369]: javac test1.java
test1.java:1: '{' expected.
class xxx.test1 {
^
java.lang.NullPointerException
at sun.tools.tree.MethodExpression.inline(MethodExpression.java:248)
at sun.tools.tree.ExpressionStatement.inline(ExpressionStatement.java:51)
at sun.tools.tree.CompoundStatement.inline(CompoundStatement.java:65)
at sun.tools.javac.SourceField.inline(SourceField.java:293)
at sun.tools.javac.SourceField.code(SourceField.java:367)
at sun.tools.javac.SourceClass.compileClass(SourceClass.java:564)
at sun.tools.javac.SourceClass.compile(SourceClass.java:527)
at sun.tools.javac.Main.compile(Main.java:193)
at sun.tools.javac.Main.main(Main.java:289)
.//test1.java:1: Class xxx already defined in test1.java.
class xxx.test1 {
^
.//test1.java:1: '{' expected.
class xxx.test1 {
^
.//test1.java:7: Class test2 already defined in test1.java.
class test2 {
^
.//test1.java:10: Class test1 not found in type declaration.
test1 varA;
^
.//test1.java:11: Class test1 not found in new.
varA = new test1();
^
.//test1.java:12: Class test1 not found in void testx().
varA.test("Hello World!!!");
^
error: An exception has occurred in the compiler; please file a bug report (###@###.###).
8 errors
- relates to
-
JDK-1232045 missing return type crashes compiler
-
- Closed
-