mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
8780aa8862
GitOrigin-RevId: 6e9389c6d8b88bfa91de6c658cfc51039bfeefca
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;
|
|
}
|
|
}
|