mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
d0cf7b359a
GitOrigin-RevId: 8d646035979e3ec0a7de3c6f58a4e6ec9967bdbd
6 lines
140 B
Java
6 lines
140 B
Java
class Main {
|
|
void test(Object o) {
|
|
boolean b = o instanceof String <caret>s && s.length() > 1;
|
|
s = "fsfsdfsd"; // unresolved
|
|
}
|
|
} |