Files

10 lines
138 B
Java

// "Cast to 'Runnable'" "true"
class C {
void f(Object o) {
if (o instanceof Runnable) {
((Runnable) o)<caret>
}
}
}