mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 11:14:32 +07:00
9a44d02318
GitOrigin-RevId: 2bf3977d2873bd133ac6acb85df54aece740f428
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>
|
|
}
|
|
}
|
|
} |