use v6-alpha; use Test; # L plan 1; close $*ERR; # I am not sure this will even work because I am not 100% sure # of the order in which the END {} blocks run. Will the Test.pm # END {} run first? Or will this one? And how will that affect # the test? END { pass("end block reached") } exit; # same as die() -- but Harness doesn't like a failed exit code flunk("exit did not work");