# New Ticket Created by  Александр Кирюхин 
# Please include the string:  [perl #130291]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=130291 >


The original example to reproduce:

use v6;

my $p = Proc::Async.new('ls', '-l');

$p.stdout.tap(-> $v { say $v });
$p.stderr.tap(-> $v { say $v.WHAT; say $v.perl; }); # Prints (Str) and
empty string..

await $p.start;

Stdout and stderr is tapped with empty output on any command.

Reply via email to