# New Ticket Created by Chris Fields
# Please include the string: [perl #76932]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76932 >
Reported on IRC but was warnocked.
cjfields@pyrimidine:~/tests/perl6$ cat lives_ok.pl
use v6;
use Test;
lives_ok { warn('Foo') };
done_testing;
cjfields@pyrimidine:~/tests/perl6$ perl6 lives_ok.pl
not ok 1 -
1..1
# Looks like you failed 1 tests of 1
chris