The error message has changed from:
err114.java: 3: Class NotDef not found in int foo().
to
err114.java:3: Undefined variable: NotDef
The code is:
class Foo {
int foo() {
return NotDef.x;
}
}
Is this intentional?
err114.java: 3: Class NotDef not found in int foo().
to
err114.java:3: Undefined variable: NotDef
The code is:
class Foo {
int foo() {
return NotDef.x;
}
}
Is this intentional?