mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:08:52 +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>
|
|
}
|
|
}
|
|
}
|
|
|