-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rakudo allows an empty regex declaration #2226
Comments
From @masak<masak> rakudo: grammar G { regex foo { } }; say "alive" |
From @cokeOn Sat Oct 16 11:33:21 2010, masak wrote:
Fixed: Closable with tests. -- |
The RT System itself - Status changed from 'new' to 'open' |
From @moritzOn Tue Jan 14 13:35:37 2014, coke wrote:
Tested here: RT #78404: Error reporting on Null regexes Inline Patchdiff --git a/S32-exceptions/misc.t b/S32-exceptions/misc.t
index 0d4b9ed..d361f9c 100644
--- a/S32-exceptions/misc.t
+++ b/S32-exceptions/misc.t
@@ -133,6 +133,17 @@ throws_like 'my role R { has $.x; has $.y }; 99 does R("wrong");', X::R
# RT #73806
throws_like q[if() {}], X::Comp::Group, sorrows => sub (@s) { @s[0] ~~ X::Syntax::KeywordAs
+# RT #78404
+throws_like q[my grammar G { regex foo { } }], X::Syntax::Regex::NullRegex;
+throws_like q[/ /], X::Syntax::Regex::NullRegex;
+# just an empty branch, still same error, please
+#?rakudo skip "LTA error"
+throws_like q[/ a | /], X::Syntax::Regex::NullRegex;
+#?rakudo skip "LTA error"
+throws_like q[/ a || /], X::Syntax::Regex::NullRegex;
+#?rakudo skip "LTA error"
+throws_like q[/ a & /], X::Syntax::Regex::NullRegex;
+
throws_like 'sub f($a?, $b) { }', X::Parameter::WrongOrder,
misplaced => 'required', |
@moritz - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#78404 (status was 'resolved')
Searchable as RT78404$
The text was updated successfully, but these errors were encountered: