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