This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
t/op/tr_latin1.t: Skip ASCII-centric tests on EBCDIC
[perl5.git] / t / op / mydef.t
1 #!./perl -w
2
3 BEGIN {
4     chdir 't' if -d 't';
5     require './test.pl';
6     set_up_inc('../lib');
7 }
8
9 plan tests => 1;
10
11 use strict;
12
13 eval 'my $_';
14 like $@, qr/^Can't use global \$_ in "my" at /;
15