# New Ticket Created by Rob Hoelz # Please include the string: [perl #125757] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=125757 >
See the attached script.
use v6; use Test; plan 1; my $p = shell('false', :out); isnt $p.exitcode, 0, 'exit code of false should not be 0';