This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
dial back warnings on UNIVERSAL->import
[perl5.git] / t / op / yadayada.t
CommitLineData
be25f609 1#!./perl
2
341b7876
NC
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
be25f609 8
341b7876
NC
9use strict;
10
678ae90b 11plan 1;
341b7876
NC
12
13my $err = "Unimplemented at $0 line " . ( __LINE__ + 2 ) . ".\n";
be25f609 14
15eval { ... };
16
341b7876 17is $@, $err;