This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Encode to CPAN version 2.78
[perl5.git] / t / op / mydef.t
CommitLineData
9a0b91eb 1#!./perl -w
59f00321
RGS
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
1c25d394 6 require './test.pl';
59f00321
RGS
7}
8
9a0b91eb 9use strict;
59f00321 10
7fba2966
FC
11eval 'my $_';
12like $@, qr/^Can't use global \$_ in "my" at /;
9a0b91eb
NC
13
14done_testing();