mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 12:18:27 +07:00
GitOrigin-RevId: 0ee29991b00d4ac8341c031a4a111b23bb44b800
9 lines
147 B
Java
9 lines
147 B
Java
// "Convert to local variable" "true-preview"
|
|
class Test {
|
|
|
|
private String <caret>field;
|
|
|
|
private Runnable r = () -> {
|
|
field = "foo";
|
|
}
|
|
} |