Files
openide/java/java-tests/testData/refactoring/introduceVariable/StatementsBeforeSuper.java
Bas Leijdekkers 8f2386e1d4 Java: make "Introduce variable" refactoring "statements before super()" aware (IDEA-340403)
GitOrigin-RevId: 5b961c4baf967175428cb594e0f6d534d9824eb3
2023-12-28 17:39:41 +00:00

9 lines
97 B
Java

class C extends B {
C() {
super(<selection>1</selection>);
}
}
class B {
B(int i) {}
}