summaryrefslogtreecommitdiff
path: root/t/lib/Class/Load/Error/DieAfterIsa.pm
blob: 0a021cdd1d07324e062c10931e764a09152fa493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Class::Load::Error::DieAfterIsa;

use strict;
use warnings;

# This library emulates a bug that can occur under App::Cmd,
#
# A broken library use's another library ( App::Cmd::Setup ), and that library
# injects @ISA during import->()

our @ISA = qw( UNIVERSAL );

die "Not a syntax error";