mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
10 lines
145 B
Java
10 lines
145 B
Java
// "Insert '(Runnable)o' declaration" "true-preview"
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof Runnable) {
|
|
o<caret>
|
|
}
|
|
}
|
|
}
|
|
|