a494f0ab86
Turn on lambda expression, method reference and default method support Reviewed-by: jjg
17 lines
309 B
Java
17 lines
309 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @summary flow analysis is not run on inlined default bodies
|
|
* @compile/fail/ref=Neg06.out -XDrawDiagnostics Neg06.java
|
|
*/
|
|
|
|
class Neg06 {
|
|
|
|
interface A {
|
|
default String m() { C.m(); }
|
|
}
|
|
|
|
static class C {
|
|
static String m() { return ""; }
|
|
}
|
|
}
|