# New Ticket Created by Zohar Kelrich # Please include the string: [perl #104794] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=104794 >
qx{} captures stderr as well as stdout, which it shouldn't be doing.
In p5:
$ perl -E 'my $a = qx{echo woot 1>&2 }; say "|||$a|||"'
woot
||||||
In rakudo:
$ perl6 -e 'my $a = qx{echo woot 1>&2 }; say "|||$a|||"'
|||woot
|||
