aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR5641.java
blob: 8c7d3aa27c004e7cb93db7e98147efd95b69cbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
  {
  }
}