mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 81b2e38494d7792dfe3ec13703851e4eb1539e71
12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
class X {
|
|
|
|
static class Nested {
|
|
void print(X x) {
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Nested().print(new X());
|
|
}
|
|
} |