2013-09-10 11:47:51 +00:00
|
|
|
/* @test /nodynamiccopyright/
|
|
|
|
* @bug 7192246
|
2012-11-04 10:59:42 +00:00
|
|
|
* @summary check that ill-formed MI hierarchies do not compile
|
2012-11-17 19:01:03 +00:00
|
|
|
* @compile/fail/ref=Neg02.out -XDrawDiagnostics Neg02.java
|
2012-11-04 10:59:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Neg02 {
|
|
|
|
interface A {
|
|
|
|
default void m() { Neg02.impl(this); }
|
|
|
|
}
|
|
|
|
|
|
|
|
interface B {
|
|
|
|
default void m() { Neg02.impl(this); }
|
|
|
|
}
|
|
|
|
|
|
|
|
static class X implements A, B { } //error
|
|
|
|
|
|
|
|
void test(X x) {
|
|
|
|
x.m();
|
|
|
|
((A)x).m();
|
|
|
|
((B)x).m();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void impl(A a) { }
|
|
|
|
static void impl(B b) { }
|
|
|
|
}
|