blob: 86311a547f7437c8d6d4d131def8be67b70b1a92 [file] [log] [blame]
// "Insert '(Runnable)this' declaration" "true"
class C {
void f() {
while (!(this instanceof Runnable)) {
//return;
}
Runnable runnable = (Runnable) this;
<caret>
}
}