source: trunk/gcc/libjava/testsuite/libjava.compile/PR5641.java

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 197 bytes
Line 
1interface I
2{
3 void m();
4}
5abstract class C implements I {}
6class Foo
7{
8 void Bar(C c)
9 {
10 c.m();
11 }
12 void blah(C c)
13 {
14 c.m();
15 }
16
17 public static void main (String[] args)
18 {
19 }
20}
Note: See TracBrowser for help on using the repository browser.