blob: 8ad6b83944afee6288b8cf86039a5220d772756e [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 {
}