mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
18 lines
367 B
Java
18 lines
367 B
Java
// "Copy 'a' to final temp variable" "true-preview"
|
|
public class DoubleTrouble {
|
|
public void test() {
|
|
int a = 1;
|
|
a = 2;
|
|
class s {
|
|
public void run() {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(<caret>a);
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|