blob: 965568ae15f8ee0d0e0066731e13ce41df58746f [file] [log] [blame]
import java.lang.annotation.*;
@Target({ElementType.TYPE_USE})
@interface TA { }
class C {
void foo () {
@TA C y = null;
@TA C y1 = y;
}
}