mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
9a44d02318
GitOrigin-RevId: 2bf3977d2873bd133ac6acb85df54aece740f428
11 lines
212 B
Java
11 lines
212 B
Java
// "Insert '(String)s' declaration" "true-preview"
|
|
class C {
|
|
void f() {
|
|
String s = "";
|
|
if (s instanceof String) {
|
|
String string = (String) s;
|
|
<caret>
|
|
}
|
|
}
|
|
}
|