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