diff options
Diffstat (limited to 'tests/bugs')
-rw-r--r-- | tests/bugs/StaticInterfaceMethods.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs/StaticInterfaceMethods.java b/tests/bugs/StaticInterfaceMethods.java new file mode 100644 index 000000000..fb08f0db4 --- /dev/null +++ b/tests/bugs/StaticInterfaceMethods.java @@ -0,0 +1,10 @@ +interface StaticInterfaceMethods { + +} + +aspect A { + + static int StaticInterfaceMethods.aMethod() { + return 1; + } +}
\ No newline at end of file |