blob: ef62ce4aec3a604af77539e856011d806005f133 [file] [log] [blame]
// "Insert '(Runnable)this' declaration" "false"
class C {
void f() {
if (this instanceof Runnable<caret>) {
Object o = (Runnable)this;
}
}
}