mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-15 06:06:53 +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;
|
|
}
|
|
};
|
|
}
|
|
}
|