blob: 3da49f30b8da7a8f3f465a0d909ac5ddcd35c25f [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
public class ConstructorParamWithMessage {
public ConstructorParamWithMessage(@NotNull("ConstructorParam.ConstructorParam.o cant be null") Object o) {
}
}