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