oakc will compile the following code. When it is run it causes the
interpreter to SEGV. I am not sure if the situation is detectable at
sompile time or not,. This bug may have to be refiled againats the
interpreter.
class AbstractBugClass {
abstract int read();
}
class BugClass extends AbstractBugClass {
public int read() {
return super.read();
}
public static void main(String args[]) {
BugClass b = new BugClass();
b.read();
}
}
interpreter to SEGV. I am not sure if the situation is detectable at
sompile time or not,. This bug may have to be refiled againats the
interpreter.
class AbstractBugClass {
abstract int read();
}
class BugClass extends AbstractBugClass {
public int read() {
return super.read();
}
public static void main(String args[]) {
BugClass b = new BugClass();
b.read();
}
}
- relates to
-
JDK-1184105 oaki segv's when invoking an abstract method
- Closed