blob: 257f169b26238c4aea8d9e1f2d925b733491954b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class C implements II {}
class D {
public static void m() {
C c = new C();
E1 e1 = new E1();
E2 e2 = new E2();
c.foo(e1,e2.getClass());
}
}
class E1 implements I1 {}
class E2 implements I2 {}
|