Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/NewExpressionAnnotations.java
T
Tagir Valeevandintellij-monorepo-bot 7e3a48e6ad [java-psi] Proper order of annotations inside PsiNewExpressionImpl
Fixes IDEA-366918 Wrong order of annotations in new array expressions

GitOrigin-RevId: 29bbfb29123cd273f4c3d34f74e8a00bc6ab5ec1
2025-03-04 17:38:52 +00:00

7 lines
147 B
Java

import org.jetbrains.annotations.*;
import java.util.*;
class A {
int @NotNull [] @Nullable [] a = new int @NotNull [] @Nullable [] { null };
}