The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
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";