mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
10 lines
174 B
Java
10 lines
174 B
Java
// "Move 'x' into anonymous object" "false"
|
|
class Test {
|
|
public void test() {
|
|
int x = 12;
|
|
Runnable r = () -> {
|
|
x<caret>++;
|
|
};
|
|
}
|
|
}
|