Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalVarFromInstanceof/before1.java
T
2022-07-29 17:54:57 +00:00

8 lines
127 B
Java

// "Insert '(Runnable)this' declaration" "true-preview"
class C {
void f() {
if (this <caret>instanceof Runnable)
}
}