mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: cf9655e7988dc4187a737cb4d499a1bd9cf3d45c
10 lines
212 B
Java
10 lines
212 B
Java
// "Replace 's' with pattern variable" "true"
|
|
class X {
|
|
void test(Object obj) {
|
|
if (!(obj instanceof String)) {
|
|
System.out.println("not");
|
|
} else {
|
|
String <caret>s = (String)obj;
|
|
}
|
|
}
|
|
} |