test/tools/javac/defaultMethods/Neg06.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /* @test /nodynamiccopyright/
2 * @bug 7192246
3 * @summary flow analysis is not run on inlined default bodies
4 * @compile/fail/ref=Neg06.out -XDrawDiagnostics Neg06.java
5 */
6
7 class Neg06 {
8
9 interface A {
10 default String m() { C.m(); }
11 }
12
13 static class C {
14 static String m() { return ""; }
15 }
16 }

mercurial