mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Fixes IDEA-288566 Wrong warning at array element instanceof when it was autoboxed GitOrigin-RevId: f4c1a4bceca84db8842541ed0468af8785a839c7
7 lines
249 B
Java
7 lines
249 B
Java
public class BoxingInArrayDeclaration {
|
|
|
|
public static void main(String[] args) {
|
|
Object[] arr = {1, 2};
|
|
System.out.println(<warning descr="Condition 'arr[0] instanceof Integer' is always 'true'">arr[0] instanceof Integer</warning>);
|
|
}
|
|
} |