/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/defaultMethods/Neg02.java
26 строк
540 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* @test /nodynamiccopyright/ * @bug 7192246 * @summary check that ill-formed MI hierarchies do not compile * @compile/fail/ref=Neg02.out -XDrawDiagnostics Neg02.java */ 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) { } }