summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/atomic/before12.java
blob: 2c634df22c2fc16733615063693ae127ae0a42c6 (plain)
1
2
3
4
5
6
7
8
9
10
// "Convert to atomic" "true"
class Test {

    {
        int <caret>i = 0;
        Integer j = 0;

        assert j == i;
    }
}