summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/atomic/before10.java
blob: a4e7c9db6b75430e3783c53c39f34b939c50521e (plain)
1
2
3
4
5
6
7
8
// "Convert to atomic" "true"
class Test {
  final int <caret>o = 0;

  void foo() {
    boolean b = this.o == 1;
  }
}