a494f0ab86
Turn on lambda expression, method reference and default method support Reviewed-by: jjg
12 lines
339 B
Java
12 lines
339 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @summary check that a class cannot have two sibling interfaces with a default and abstract method
|
|
* @compile/fail/ref=Neg14.out -XDrawDiagnostics Neg14.java
|
|
*/
|
|
class Neg14 {
|
|
interface IA { int m(); }
|
|
interface IB { default int m() { return 1; } }
|
|
|
|
abstract class AB implements IA, IB {}
|
|
}
|