summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/threadLocal/beforeTA1.java
blob: ac3409c2e7594214839d163ffd54a98ffd40f78a (plain)
1
2
3
4
5
6
7
8
9
// "Convert to ThreadLocal" "true"
import java.lang.annotation.*;

@Target(value = ElementType.TYPE_USE)
public @interface TA { int value(); }

class Test {
    @TA(42) int <caret>field = 0;
}