summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/atomic/beforeExcl.java
blob: 3df455583c35c5fa258d2f5c09d4956a59641e21 (plain)
1
2
3
4
5
6
7
// "Convert to atomic" "true"
class Test {
  boolean <caret>field=false;
  {
    boolean b = !field;
  }
}