mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
208 B
Java
9 lines
208 B
Java
// "Insert '(String)o' declaration" "true-preview"
|
|
class C {
|
|
void f(Object o, Object f) {
|
|
if (o instanceof String) {//todo comment
|
|
String s = (String) o;
|
|
|
|
}
|
|
}
|
|
} |