Not much else to say. The following piece of code will fail: `assert!(Regex::new(r"1|2|3|4|5|6|7|8|9|10|int").unwrap().is_match("int")); //fails` While this won't: `assert!(Regex::new(r"1|2|3|4|5|6|7|8|9|int").unwrap().is_match("int"));` Edit: this is with 0.1.58 and rust 1.7