Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalVarFromInstanceof/afterFormatting.java
Tagir Valeev c642b9a580 [java-intentions] CreateLocalVarFromInstanceofAction: exact preview+tests
GitOrigin-RevId: acf0c175cda663c43d5feb5b503ed462c5acf92d
2022-07-29 17:54:57 +00:00

13 lines
232 B
Java

// "Insert '(IOException)o' declaration" "true-preview"
import java.io.IOException;
class C {
void f(Object o) {
if (o instanceof IOException) {
IOException ioException = (IOException) o;
<caret>
}
}
}