mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
12 lines
210 B
Java
12 lines
210 B
Java
// "Create read-only property 'field' in 'Test'" "true-preview"
|
|
public class Test {
|
|
Integer field;
|
|
public foo() {
|
|
getField();
|
|
}
|
|
|
|
public Object getField() {
|
|
return field;
|
|
}
|
|
}
|