blob: 12a297effe8dc3c06fab23cb97629f055e27b0f3 [file] [log] [blame]
package com.siyeh.igtest.bugs;
import java.util.regex.Pattern;
public class MalformedRegularExpression {
private static final String ASTERISK = "*";
public void foo()
{
"bar".matches("*");
"bar".matches(".*");
Pattern.compile(ASTERISK);
Pattern.compile(".*");
}
}