summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr149322/TestFail.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr149322/TestFail.java')
-rw-r--r--tests/bugs153/pr149322/TestFail.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs153/pr149322/TestFail.java b/tests/bugs153/pr149322/TestFail.java
new file mode 100644
index 000000000..549a48b3b
--- /dev/null
+++ b/tests/bugs153/pr149322/TestFail.java
@@ -0,0 +1,14 @@
+public class TestFail {
+
+ public void invoke () {
+ Interface i = new Missing();
+ i.method();
+ Missing cf = new Missing();
+ cf.method();
+ }
+
+ public static void main(String[] args) {
+ new TestFail().invoke();
+ }
+
+}