diff -r 000000000000 -r 959103a6100f test/tools/javac/defaultMethods/Neg16.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/defaultMethods/Neg16.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,13 @@ +/* @test /nodynamiccopyright/ + * @bug 7192246 + * @summary check that level skipping in default super calls is correctly rejected + * @compile/fail/ref=Neg16.out -XDrawDiagnostics Neg16.java + */ +class Neg16 { + interface I { default void m() { } } + interface J extends I { default void m() { } } + + static class C implements I, J { + void foo() { I.super.m(); } + } +}