Files
codeql/java/ql/integration-tests/all-platforms/kotlin/enhanced-nullability/NotNull.java
2022-10-28 10:53:45 +01:00

7 lines
240 B
Java

package org.jetbrains.annotations;
import java.lang.annotation.*;
// Stub of @NotNull:
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE})
public @interface NotNull { }