mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-09 15:49:29 +07:00
10 lines
126 B
Java
10 lines
126 B
Java
class Anonymous {
|
|
int num1;
|
|
int num2;
|
|
Object o = new Object(){
|
|
int num = 1;
|
|
};
|
|
|
|
Anonymous() {}
|
|
void foo() {}
|
|
} |