### What it does
Checks [regex](https://crates.io/crates/regex) creation
(with `Regex::new`, `RegexBuilder::new`, or `RegexSet::new`) for correct
regex syntax.

### Why is this bad?
This will lead to a runtime panic.

### Example
```
Regex::new("(")
```