mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
292 B
Java
15 lines
292 B
Java
class A {
|
|
private Object b = new Inner();
|
|
|
|
private class <caret>Inner {
|
|
public Inner() {
|
|
// this does some stuff
|
|
doStuff();
|
|
/* isn't this interesting? */
|
|
}
|
|
|
|
public String doStuff() {
|
|
return "A";
|
|
}
|
|
}
|
|
} |