aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/abstractMethods/interface/C.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/abstractMethods/interface/C.java')
-rw-r--r--tests/bugs/abstractMethods/interface/C.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs/abstractMethods/interface/C.java b/tests/bugs/abstractMethods/interface/C.java
new file mode 100644
index 000000000..99fc42f3d
--- /dev/null
+++ b/tests/bugs/abstractMethods/interface/C.java
@@ -0,0 +1,5 @@
+public class C implements B {
+ public static void main(String[] args) {
+ A.doit(new C());
+ }
+}