mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 14:30:49 +07:00
GitOrigin-RevId: 638c71cb24eff7895e970c3200bdff2023f11ab0
7 lines
192 B
Java
7 lines
192 B
Java
// "Fix all 'Pattern variable can be used' problems in file" "true"
|
|
class X {
|
|
void test(Object obj, Object obj2) {
|
|
if (obj instanceof String s && obj2 instanceof Integer i) {
|
|
}
|
|
}
|
|
} |