Skip to content
Prev Previous commit
Next Next commit
temp
  • Loading branch information
Prashanth Govindarajan committed Jun 30, 2021
commit 7a404e90ae75c4dc0b4f752f36610038a2c7f216
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,8 @@ public void Synchronized()
[Fact]
public void Test()
{
var regex = new Regex(".*foo");
Debugger.Launch();
var regex = new Regex(".*Foo", RegexOptions.IgnoreCase);
var match = regex.Match("aBfoo");
Assert.True(match.Success);
}
Expand Down