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