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

 int j = i + 5;
 String s = "i = " + i;
}