mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 0ee29991b00d4ac8341c031a4a111b23bb44b800
15 lines
271 B
Java
15 lines
271 B
Java
// "Fix all 'Field can be local variable' problems in file" "false"
|
|
class Outer {
|
|
|
|
void test(Inner inner) {
|
|
System.out.println(inner.field);
|
|
}
|
|
|
|
class Inner {
|
|
private final String f<caret>ield;
|
|
|
|
Inner(String field) {
|
|
this.field = field;
|
|
}
|
|
}
|
|
} |