Files
Bas Leijdekkers 610358505b Java: stable method ordering for "Convert to instance method" (IDEA-356128)
GitOrigin-RevId: 81b2e38494d7792dfe3ec13703851e4eb1539e71
2024-07-10 19:17:56 +00:00

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());
}
}