mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
12 lines
189 B
Java
12 lines
189 B
Java
// "Insert '(String)x' declaration" "true"
|
|
|
|
class C {
|
|
Object x = new Object();
|
|
|
|
void x() {
|
|
if (x instanceof String) {
|
|
String x = (String) this.x;
|
|
<caret>
|
|
}
|
|
}
|
|
} |