mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
9 lines
194 B
Java
9 lines
194 B
Java
// "Convert field to local variable in constructor" "true-preview"
|
|
class Test {
|
|
|
|
public Test(String param) {
|
|
field = param;
|
|
System.out.println(field == null ? "null" : field);
|
|
}
|
|
|
|
} |