Avoid braces as regex delimiters when used escaped in the pattern
Dagfinn Ilmari Mannsåker [Sat, 4 May 2013 20:09:16 +0000 (21:09 +0100)]
It warns in 5.17.x, and the parsing and metacharcter status is subject
to change in future versions of perl.

xt/moox-types.t

index 59edbe4..162ed5d 100644 (file)
@@ -51,7 +51,7 @@ eval q {
 
 like(
   $@,
-  qr{^error inflating attribute 'barble' for package 'Fooble': \$TYPE_MAP\{CODE\(\w+?\)\} did not return a valid type constraint},
+  qr/^error inflating attribute 'barble' for package 'Fooble': \$TYPE_MAP\{CODE\(\w+?\)\} did not return a valid type constraint/,
   'error message for incorrect type constraint inflation',
 );