blob: 9540221fa4ff07eb68b9eb5fc6d680fc529bc4d8 [file] [log] [blame]
// "Cast to 'int[]'" "true"
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@Target({TYPE_USE}) @interface TA { }
class C {
{
Object o = null;
@TA <caret>int @TA [] a = o;
}
}