source:
trunk/gcc/libjava/testsuite/libjava.compile/PR5641.java
Last change on this file was 2, checked in by , 22 years ago | |
---|---|
|
|
File size: 197 bytes |
Line | |
---|---|
1 | interface I |
2 | { |
3 | void m(); |
4 | } |
5 | abstract class C implements I {} |
6 | class 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.