Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalVarFromInstanceof/afterShadowField.java
2023-02-14 13:53:56 +00:00

12 lines
197 B
Java

// "Insert '(String)x' declaration" "true-preview"
class C {
Object s = new Object();
void x() {
if (x instanceof String) {
String string = (String) x;
<caret>
}
}
}