This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names_and_variables/names.t
commit ee1313162577c0658dcbb984967dfbb350a35167 Author: bbkr <b...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Fri Apr 30 16:25:39 2010 +0000 added test for RT #69752 git-svn-id: http://svn.pugscode.org/p...@30519 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 b1cce48..07a1f1d 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 21; +plan 22; # I'm using semi-random nouns for variable names since I'm tired of foo/bar/baz and alpha/beta/... @@ -73,4 +73,11 @@ plan 21; is self(), 4, 'can define and call a sub self()'; } +# RT #69752 +{ + eval 'Module.new'; + ok "$!" ~~ / 'Module' /, + 'error message mentions name not recognized, no maximum recursion depth exceeded'; +} + # vim: ft=perl6