mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00

Add type-checking support for default methods as per Featherweight-Defender document Reviewed-by: jjg, dlsmith
13 lines
393 B
Java
13 lines
393 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @summary check that level skipping in default super calls is correctly rejected
|
|
* @compile/fail/ref=Neg16.out -XDallowDefaultMethods -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(); }
|
|
}
|
|
}
|