mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
Fixes IDEA-366918 Wrong order of annotations in new array expressions GitOrigin-RevId: 29bbfb29123cd273f4c3d34f74e8a00bc6ab5ec1
7 lines
147 B
Java
7 lines
147 B
Java
import org.jetbrains.annotations.*;
|
|
import java.util.*;
|
|
|
|
class A {
|
|
int @NotNull [] @Nullable [] a = new int @NotNull [] @Nullable [] { null };
|
|
}
|