Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #80186, IO.say
  • Loading branch information
moritz committed Mar 3, 2012
1 parent dfd1074 commit 9f76350
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S16-io/say-and-ref.t
Expand Up @@ -3,7 +3,7 @@ use Test;
BEGIN { @*INC.push: 't/spec/packages' }
use Test::Util;

plan 2;
plan 3;


is_run q{my $a = [1, 2, 3]; say $a},
Expand All @@ -20,4 +20,10 @@ is_run q{my $a = [1, 2, 3]; print $a},
status => 0,
}, 'Can print array ref';

# RT #80186
is_run q{IO.say},
{
out => "IO()\n";
}, 'Can do IO.say';

# vim: ft=perl6

0 comments on commit 9f76350

Please sign in to comment.