This used to fail with old V::M, add it to make sure it behaves under PP
[p5sagit/namespace-clean.git] / t / 05-syntax-error.t
1 #!/usr/bin/env perl
2 use warnings;
3 use strict;
4
5 use FindBin;
6 use lib "$FindBin::Bin/lib";
7 use Test::More tests => 1;
8
9 eval { require "SyntaxError.pm" };
10 like( $@, qr/\Asyntax error at /, 'Syntax Error reported correctly' );