Files
openide/java/java-tests/testData/compiler/notNullVerification/ConstructorParamWithMessage.java

6 lines
201 B
Java

import org.jetbrains.annotations.NotNull;
public class ConstructorParamWithMessage {
public ConstructorParamWithMessage(@NotNull("ConstructorParam.ConstructorParam.o cant be null") Object o) {
}
}