summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigrationByAtomic/reverseStringArray/after/Test.java
blob: 0c64ea445f01e40c8473bf1685897ccdb599b784 (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.concurrent.atomic.AtomicReferenceArray;

class Test {
    String[] s = new String[2];

    void foo() {
        s[0] = "";
        System.out.println(s[0]);

    }
}