id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
193,warnings printed on console by Perl6 parser,szabgab,azawawi,"given the following perl 5 code 
{{{
my $x;
$x = defined $x ? $x : 'DEFAULT VALUE';
print ""$x\n"";                             # DEFAULT VALUE
}}}
and trying to use it as perl 6 code I get the correct warning
but it is on the console instead of the output window 
(or maybe also in the error window)

{{{
STD.pm Parsing error
############# PARSE FAILED #############
Obsolete use of ?: for the conditional operator; in Perl 6 please use ??!! instead at (eval) line 6:
------> $x = defined $x ? $x : 'DEFAULT VALUE';
}}}
",defect,closed,major,,plugins,0.22,fixed,perl6,
