Files
2022-07-29 17:54:57 +00:00

10 lines
145 B
Java

// "Insert '(Runnable)o' declaration" "true-preview"
class C {
void f(Object o) {
if (o instanceof Runnable) {
o<caret>
}
}
}