mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
10 lines
176 B
Java
10 lines
176 B
Java
// "Create field 'FIELD'" "true"
|
|
class C {
|
|
public void foo() {
|
|
int i = ITest.FIELD;
|
|
}
|
|
|
|
public static interface ITest {
|
|
int FIELD<caret>;
|
|
}
|
|
} |