summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/regex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/regex.rs')
-rw-r--r--src/tools/clippy/tests/ui/regex.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/regex.rs b/src/tools/clippy/tests/ui/regex.rs
index 094d9574a..1ea0d65bf 100644
--- a/src/tools/clippy/tests/ui/regex.rs
+++ b/src/tools/clippy/tests/ui/regex.rs
@@ -112,6 +112,10 @@ fn trivial_regex() {
// #6005: unicode classes in bytes::Regex
let a_byte_of_unicode = BRegex::new(r"\p{C}");
+
+ // start and end word boundry, introduced in regex 0.10
+ let _ = BRegex::new(r"\<word\>");
+ let _ = BRegex::new(r"\b{start}word\b{end}");
}
fn main() {