This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
toke.c: Fix bugs where UTF-8 is turned on in mid chunk
[perl5.git] / t / lib / croak / pp_sys
CommitLineData
e8c18a84
TC
1__END__
2# pp_sys.c
3# NAME pipe() croaks on bad left side [perl #126480]
4# SKIP ? use Config; !$Config{d_pipe} && "No pipe() available"
5my $fh;
6pipe($$5, $fh)
7EXPECT
8Bad symbol for filehandle at - line 3.
9########
10# NAME pipe() croaks on bad right side [perl #126480]
11# SKIP ? use Config; !$Config{d_pipe} && "No pipe() available"
12my $fh;
13pipe($fh, $$5)
14EXPECT
15Bad symbol for filehandle at - line 2.
16########