summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigrationByAtomic/directConditions/before/Test.java
blob: ef5413600c405fe7c4e6685d8bdc486ab340831f (plain)
1
2
3
4
5
6
7
8
9
class Test {
  boolean b;

  void foo() {
    if (b) {
      b = true;
    }
  }
}