Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test Match.print
  • Loading branch information
moritz committed Nov 1, 2011
1 parent f926610 commit 261cff6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions S16-io/say.t
Expand Up @@ -4,7 +4,7 @@ use v6;

# doesn't use Test.pm and plan() intentionally

say "1..7";
say "1..8";

# Tests for say
{
Expand All @@ -29,6 +29,12 @@ say "1..7";

$*OUT.say('ok 6 - $*OUT.say(...)');

'ok 7 - Mu.print'.print;
"ok 7 - Mu.print\n".print;

grammar A {
token TOP { .+ };
}

A.parse("ok 8 - Match.print\n").print;

# vim: ft=perl6

0 comments on commit 261cff6

Please sign in to comment.