mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
221 B
Java
13 lines
221 B
Java
// "Create Field 'field'" "true"
|
|
class Main {
|
|
static void foo() {
|
|
new Object() {
|
|
public int field<caret>;
|
|
|
|
void bar() {
|
|
this.field = 0;
|
|
}
|
|
};
|
|
}
|
|
}
|