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