mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
12 lines
253 B
Java
12 lines
253 B
Java
class m {
|
|
int i;
|
|
void f() {
|
|
int r = 0;
|
|
new Runnable() {
|
|
public void run() {
|
|
int k = <error descr="Variable 'r' is accessed from within inner class, needs to be declared final">r</error>;
|
|
int ii = i;
|
|
}
|
|
};
|
|
}
|
|
} |