Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/insertSuper/afterThis.java
Tagir Valeev 758ecdbb56 [java-intentions] More preview tests
GitOrigin-RevId: ffe102e1f4377d52f988f59c407af3dd7acc36fc
2022-07-29 17:55:03 +00:00

17 lines
174 B
Java

// "Insert 'this();'" "true-preview"
import java.io.*;
class c {
public c(int i) {
}
}
class a extends c {
a(int i) {
super(i);
}
a() {
this(<caret>);
}
}