Your IP : 216.73.217.90


Current Path : /proc/self/root/proc/self/root/proc/self/root/usr/share/doc/perl-CGI-Compile/t/
Upload File :
Current File : //proc/self/root/proc/self/root/proc/self/root/usr/share/doc/perl-CGI-Compile/t/chained_exit.t

use strict;
use warnings;

use Test::More tests => 2;
use Test::NoWarnings;

my $exit_chained;

sub CORE::GLOBAL::exit (;$) {
    $exit_chained = 1;
}

use CGI::Compile;

eval "exit";

is $exit_chained, 1, 'exit chained to CORE::GLOBAL::exit';