diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-10 03:44:52 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-10 03:44:52 +0000 |
commit | 337449a83e0de486c744f78c32c1bf4cd78b06ec (patch) | |
tree | 8f9b6eabd484a9575c5491f224c32584128255ae | |
parent | 3012a639b7f3b366a8c9ef8f4a7141746be0d5de (diff) | |
download | perl-337449a83e0de486c744f78c32c1bf4cd78b06ec.tar.gz |
Test case for #8064.
p4raw-id: //depot/perl@8065
-rwxr-xr-x | t/comp/proto.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/t/comp/proto.t b/t/comp/proto.t index 4c5b5eee83..845843ad64 100755 --- a/t/comp/proto.t +++ b/t/comp/proto.t @@ -19,7 +19,7 @@ BEGIN { use strict; -print "1..122\n"; +print "1..123\n"; my $i = 1; @@ -498,3 +498,7 @@ for my $p ( "", qw{ () ($) ($@) ($%) ($;$) (&) (&\@) (&@) (%) (\%) (\@) } ) { print "# eval[$eval]\nnot " unless $@ && $@ =~ /syntax error/; print "ok ", $i++, "\n"; } + +# Not $$;$;$ +print "not " unless prototype "CORE::substr" eq '$$;$$'; +print "ok ", $i++, "\n"; |