mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
12 lines
201 B
Java
12 lines
201 B
Java
// "Insert '(String)s' declaration" "true"
|
|
class C {
|
|
void f() {
|
|
String s = "";
|
|
if (s instanceof String) {
|
|
String s1 = (String) s;
|
|
<caret>
|
|
|
|
}
|
|
}
|
|
}
|