mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
10 lines
181 B
Java
10 lines
181 B
Java
// "Move 'x' into anonymous object" "true-preview"
|
|
class Test {
|
|
public void test() {
|
|
int x = 12;
|
|
Runnable r = () -> {
|
|
x<caret>++;
|
|
};
|
|
}
|
|
}
|