This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names_and_variables/names.t
commit 6d7027ab9bb8b4a6c73582569e1d2732dbe4d723 Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Jul 19 21:10:30 2010 +0000 [t/spec] test for RT #74276, names starting with Q git-svn-id: http://svn.pugscode.org/p...@31770 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S02-names_and_variables/names.t b/t/spec/S02-names_and_variables/names.t index 2b4bdac..b72580e 100644 --- a/t/spec/S02-names_and_variables/names.t +++ b/t/spec/S02-names_and_variables/names.t @@ -2,7 +2,7 @@ use v6; use Test; -plan 22; +plan 23; # I'm using semi-random nouns for variable names since I'm tired of foo/bar/baz and alpha/beta/... @@ -77,4 +77,11 @@ plan 22; 'error message mentions name not recognized, no maximum recursion depth exceeded'; } +# RT #74276 +# Rakudo had troubles with names starting with Q +{ + eval_lives_ok 'class Quox { }; Quox.new', 'class names can start with Q'; + +} + # vim: ft=perl6