/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/lambda/BadAccess.java
30 строк
618 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 8003280 * @summary Add lambda tests * check that non-static variables are not accessible from static lambdas * @author Maurizio Cimadamore * @compile/fail/ref=BadAccess.out -XDrawDiagnostics BadAccess.java */ public class BadAccess { int i; static int I; interface SAM { int m(); } static void test1() { int l = 0; //effectively final final int L = 0; SAM s = ()-> i + I + l + L; } void test2() { int l = 0; //effectively final final int L = 0; SAM s = ()-> i + I + l + L; } }