mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-17 09:06:53 +07:00
9 lines
163 B
Java
9 lines
163 B
Java
// "Convert 'x' to field in anonymous class" "false"
|
|
class Test {
|
|
public void test() {
|
|
Runnable r = () -> {
|
|
x<caret>++;
|
|
};
|
|
}
|
|
}
|