mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
230 B
Java
10 lines
230 B
Java
// "Insert '(String)o' declaration" "true-preview"
|
|
class X {
|
|
void foo(Object o) {
|
|
if (o instanceof String) {
|
|
String s = (String) o;
|
|
<caret>
|
|
String substring = o.();
|
|
}
|
|
}
|
|
} |