/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/implicitThis/NewBeforeOuterConstructed2.java
27 строк
831 B
Archie L. Cobbs
8163229: several regression tests have a main method that is never executed
17 янв 2023, 07:43
17 янв 2023, 07:43
382fe51
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 4689058 * @summary unverifiable code for implicit outer in super constructor call * * @compile/fail/ref=NewBeforeOuterConstructed2.out -XDrawDiagnostics NewBeforeOuterConstructed2.java */ public class NewBeforeOuterConstructed2 { NewBeforeOuterConstructed2(Object o) {} class Middle extends NewBeforeOuterConstructed2 { Middle(int i) { super(null); } Middle() { // The 'new' below is illegal, as the outer // constructor has not been called when the // implicit reference to 'this' is evaluated // during the new instance expression. super(/*Middle.this.*/new Middle(1)); } class Inner {} void f() { System.out.println("ok"); } } }