mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
197 B
Java
12 lines
197 B
Java
// "Insert '(String)x' declaration" "true-preview"
|
|
|
|
class C {
|
|
Object s = new Object();
|
|
|
|
void x() {
|
|
if (x instanceof String) {
|
|
String string = (String) x;
|
|
<caret>
|
|
}
|
|
}
|
|
} |