Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/deferFinalAssignment/beforeNestedCodeBlocks.java
Anna.Kozlova 5af6b0be16 defer assignment: choose anchor from same code block
EA-48621 - assert: CompositeElement.addChild
2016-10-12 14:04:38 +02:00

9 lines
179 B
Java

// "Defer assignment to 'i' using temp variable" "true"
class a {
{
final int i;
if (true) i = 0;
if (true) <caret>i = 0;
{if (false);}
}
}