Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test #75710: methods starting with x didn't work.
  • Loading branch information
timo committed Dec 20, 2012
1 parent 8625fc2 commit f0fb59d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion S02-names/identifier.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 21;
plan 22;

# L<S02/Names/An identifier is composed of an alphabetic character>

Expand Down Expand Up @@ -114,6 +114,10 @@ plan 21;

is $tempo, 'walking pace',
'can call subroutines whos name begin with an alphabetic infix (and)';

# RT #75710
eval_lives_ok q{our sub xyz($abc) { $abc }; xyz(1);},
'can call subroutine which starts with infix x';
}

done;
Expand Down

0 comments on commit f0fb59d

Please sign in to comment.