Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/afterSwitchExpr.java
T
2020-04-01 12:31:42 +00:00

9 lines
171 B
Java

// "Create local variable 'foo'" "true"
class Foo {
String test(int i) {
String foo;
return switch (i) {
default -> foo;
};
}
}