mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
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());
|
|
}
|
|
} |