blob: bfe6fe1df67c5adff13e8e1e7a2140b1bcbbe263 [file] [log] [blame]
// ---
public class X {
void foo(@Marker X this) {
}
class Y {
Y(@Marker X X.this) {
}
void foo(X.Y this) {
}
}
}
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE)
@interface Marker {
}