test/tools/javac/defaultMethods/Neg12.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /* @test /nodynamiccopyright/
2 * @bug 7192246
3 * @summary check that abstract methods are discarded in overload resolution diags
4 * @compile/fail/ref=Neg12.out -XDrawDiagnostics Neg12.java
5 */
6 class Neg12 {
7
8 interface I1 {
9 default void m(String s) {};
10 }
11
12 interface I2 {
13 void m(String s);
14 }
15
16 static class B {
17 void m(Integer i) { }
18 }
19
20 static class C extends B implements I1 { }
21 static class D extends B implements I2 { }
22
23 void test(C c, D d) {
24 c.m();
25 d.m();
26 }
27 }

mercurial