mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
10 lines
136 B
Java
10 lines
136 B
Java
// "Cast to 'Runnable'" "true"
|
|
class C {
|
|
void f() {
|
|
if (this instanceof Runnable) {
|
|
((Runnable) this)<caret>
|
|
}
|
|
}
|
|
}
|
|
|