The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
#
# strict_violating_spec.pl
#
# Expected to fail to compile because Test::Spec imports strict into test file.
#
########################################################################

use Test::Spec;
use FindBin qw($Bin);
BEGIN { require "$Bin/test_helper.pl" };

$undefined_variable_violates_strict_mode_and_test_should_not_compile;

runtests unless caller;