blob: 7f7db71cdd96a21ac2374937c6ee693d1f63649a [file] [log] [blame]
import java.lang.annotation.*;
@Target({ElementType.TYPE_USE})
@interface TA { }
class C {
void foo () {
@TA C y = null;
<selection>y</selection>;
}
}