aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractMethods/interface/A.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/abstractMethods/interface/A.java')
-rw-r--r--tests/bugs/abstractMethods/interface/A.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs/abstractMethods/interface/A.java b/tests/bugs/abstractMethods/interface/A.java
new file mode 100644
index 000000000..3eed777e4
--- /dev/null
+++ b/tests/bugs/abstractMethods/interface/A.java
@@ -0,0 +1,5 @@
+aspect A {
+ void B.m(){}
+
+ public static void doit(B b) { b.m(); }
+} \ No newline at end of file