/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/importscope/ImportInaccessible.java
14 строк
396 B
Guoxiong Li
8258525: Some existing tests should use /nodynamiccopyright/ instead of the standard header
30 дек 2020, 20:20
30 дек 2020, 20:20
8435f0d
Код
Авторство
О чём код?
/** * @test /nodynamiccopyright/ * @bug 8067886 * @summary Verify that type import on demand won't put inaccessible types into the Scope * @compile/fail/ref=ImportInaccessible.out -XDrawDiagnostics ImportInaccessible.java */ package p; import p.ImportInaccessible.Nested.*; class ImportInaccessible { static class Nested<X extends Inner> { private static class Inner{} } }