use v6;
use Test;
plan 1;

# L<S29/Context/"=item exit">

# This test is primarily aimed at PIL2JS.
# In conditionals, or, to be more exact, in all things using PIL2JS.cps2normal,
# exit() did call all END blocks, but the control flow was resumed afterwards.
# This is now fixed, but it's still good to have a test for it.


if 1 {
  pass;
  exit;
}

ok 0, "exit() in if didn't work";

# vim: ft=perl6