blob: 487d6336f4bd1f15d3cc313f37a2946e0457c383 [file] [log] [blame]
package nullness;
import java.util.regex.Pattern;
public class NullnessRegexWithErrors {
String str = "(str";
void context() {
str = null;
Pattern.compile("\\I");
}
}