blob: cdd8f75ab9b6d11c90e1c39e790132fdf2cc14f9 [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
public class SimpleParamWithMessage {
public void test(@NotNull("SimpleParamWithMessage.test(o) cant be null") Object o) {
}
}