mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
11 lines
188 B
Java
11 lines
188 B
Java
// "Insert '(Runnable)o' declaration" "true-preview"
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof Runnable) {
|
|
Runnable runnable = (Runnable) o;
|
|
<caret>
|
|
}
|
|
}
|
|
}
|
|
|