mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
b990c89c65
GitOrigin-RevId: 10d07e83576c67df180c8652d1003cf3de6810d1
12 lines
185 B
Java
12 lines
185 B
Java
// "Insert '(String)x' declaration" "true"
|
|
|
|
class C {
|
|
Object s = new Object();
|
|
|
|
void x() {
|
|
if (x instanceof String) {
|
|
String s1 = (String) x;
|
|
<caret>
|
|
}
|
|
}
|
|
} |