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

10 lines
160 B
Java

// "Insert '(Runnable)this' declaration" "true-preview"
class C {
void f() {
if (!(this instanceof <caret>Runnable)) {
return;
}
}
}