mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-25 16:49:22 +07:00
10 lines
146 B
Java
10 lines
146 B
Java
// "Cast to 'Runnable'" "true-preview"
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof Runnable) {
|
|
((Runnable) o)<caret>
|
|
}
|
|
}
|
|
}
|
|
|