This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names/identifier.t
commit 6691821ec8ec940f2ad5964121be8232c1c6b720 Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Sun Aug 2 17:57:00 2009 +0000 [t/spec] Test for RT #65804 git-svn-id: http://svn.pugscode.org/p...@27854 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S02-names/identifier.t b/t/spec/S02-names/identifier.t index 494e36c..ef80800 100644 --- a/t/spec/S02-names/identifier.t +++ b/t/spec/S02-names/identifier.t @@ -1,7 +1,7 @@ use v6; use Test; -plan 13; +plan 14; # L<S02/Names/An identifier is composed of an alphabetic character> @@ -54,4 +54,10 @@ plan 13; is method-check(), 'method-check', 'can call method-check'; } +# RT #65804 +{ + sub sub($foo) { $foo } + is sub('RT #65804'), 'RT #65804', 'sub named "sub" works'; +} + # vim: ft=perl6