mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 18:50:54 +07:00
15 lines
262 B
Java
15 lines
262 B
Java
// "Fix all 'Field can be local' 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;
|
|
}
|
|
}
|
|
} |