import some (modified) MS tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / error_interruption.t
CommitLineData
633048d5 1#!perl
2use strict;
3use warnings FATAL => 'all';
4
5use Dir::Self;
6use lib __DIR__ . "/lib";
7
8use Test::More;
9use Test::Fatal;
10
11like exception { require BarfyDie },
12 qr/requires explicit package name/,
13 "F:P doesn't interrupt real compilation error";
14
15done_testing();