diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR5641.java | 20 | ||||
-rw-r--r-- | libjava/testsuite/libjava.compile/PR5641.xfail | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR5641.java b/libjava/testsuite/libjava.compile/PR5641.java new file mode 100644 index 0000000..8c7d3aa --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR5641.java @@ -0,0 +1,20 @@ +interface I +{ + void m(); +} +abstract class C implements I {} +class Foo +{ + void Bar(C c) + { + c.m(); + } + void blah(C c) + { + c.m(); + } + + public static void main (String[] args) + { + } +} diff --git a/libjava/testsuite/libjava.compile/PR5641.xfail b/libjava/testsuite/libjava.compile/PR5641.xfail new file mode 100644 index 0000000..b3630c9 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR5641.xfail @@ -0,0 +1,2 @@ +no-link +xfail-byte |