blob: ae043123da3213101866f5aeea5e4d449ebffd3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!./perl
BEGIN {
chdir 't';
@INC = '../lib';
require './test.pl';
}
plan tests => 1;
eval { for (\2) { $_ = <FH> } };
like($@, 'Modification of a read-only value attempted', '[perl #19566]');
|