Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/bringVariableIntoScope/afterVar.java
2022-01-28 10:04:59 +00:00

11 lines
261 B
Java

// "Bring 'String msg' into scope" "true"
public class BringVarIntoScope {
public void moveVariableDeclarationOutOfBlock(boolean b) {
String msg;
if (b) {
msg = "Leap year";
} else {
msg = "Not a leap year";
}
}
}