blob: 73a6f6616c88a81fc0c354f5a88632e7a71ebd32 [file] [log] [blame]
// "Cast to 'Runnable'" "true"
class C {
void f(Object o) {
if (o instanceof Runnable) {
((Runnable) o)<caret>
}
}
}