mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
10 lines
241 B
Java
10 lines
241 B
Java
class X {
|
|
void expressions(Object obj) {
|
|
if (obj instanceof String <warning descr="Pattern variable 's' is never used">s</warning>) {
|
|
|
|
}
|
|
if (obj instanceof Integer integer) {
|
|
System.out.println(integer);
|
|
}
|
|
}
|
|
} |