mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
fix failure to add abstract virtuals to class with no declared virtuals
This commit is contained in:
@ -1,4 +1,16 @@
|
||||
public class Misc {
|
||||
private interface Bar {
|
||||
public int baz();
|
||||
}
|
||||
|
||||
private static abstract class Bim implements Bar { }
|
||||
|
||||
private static class Baz extends Bim {
|
||||
public int baz() {
|
||||
return 42;
|
||||
}
|
||||
}
|
||||
|
||||
private static int alpha;
|
||||
private static int beta;
|
||||
private static byte byte1, byte2, byte3;
|
||||
@ -93,6 +105,9 @@ public class Misc {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
Bim bim = new Baz();
|
||||
expect(bim.baz() == 42);
|
||||
|
||||
expect(queryDefault(new Object()) != null);
|
||||
|
||||
{ Foo foo = new Foo();
|
||||
|
Reference in New Issue
Block a user