This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Uncomment and fix up tests at the end of Storable's blessed.t
[perl5.git] / t / comp / proto.t
CommitLineData
28757baa 1#!./perl
2#
3# Contributed by Graham Barr <Graham.Barr@tiuk.ti.com>
4#
5# So far there are tests for the following prototypes.
6# none, () ($) ($@) ($%) ($;$) (&) (&\@) (&@) (%) (\%) (\@)
7#
8# It is impossible to test every prototype that can be specified, but
9# we should test as many as we can.
44a8e56a 10#
11
12BEGIN {
13 chdir 't' if -d 't';
20822f61 14 @INC = '../lib';
44a8e56a 15}
28757baa 16
f3ca7bab
NC
17# We need this, as in places we're testing the interaction of prototypes with
18# strict
28757baa 19use strict;
20
3fa17e3f 21print "1..172\n";
28757baa 22
23my $i = 1;
24
25sub testing (&$) {
26 my $p = prototype(shift);
27 my $c = shift;
28 my $what = defined $c ? '(' . $p . ')' : 'no prototype';
29 print '#' x 25,"\n";
30 print '# Testing ',$what,"\n";
31 print '#' x 25,"\n";
32 print "not "
33 if((defined($p) && defined($c) && $p ne $c)
34 || (defined($p) != defined($c)));
35 printf "ok %d\n",$i++;
36}
37
38@_ = qw(a b c d);
39my @array;
40my %hash;
41
42##
43##
44##
45
46testing \&no_proto, undef;
47
48sub no_proto {
49 print "# \@_ = (",join(",",@_),")\n";
50 scalar(@_)
51}
52
53print "not " unless 0 == no_proto();
54printf "ok %d\n",$i++;
55
56print "not " unless 1 == no_proto(5);
57printf "ok %d\n",$i++;
58
59print "not " unless 4 == &no_proto;
60printf "ok %d\n",$i++;
61
62print "not " unless 1 == no_proto +6;
63printf "ok %d\n",$i++;
64
65print "not " unless 4 == no_proto(@_);
66printf "ok %d\n",$i++;
67
68##
69##
70##
71
72
73testing \&no_args, '';
74
75sub no_args () {
76 print "# \@_ = (",join(",",@_),")\n";
77 scalar(@_)
78}
79
80print "not " unless 0 == no_args();
81printf "ok %d\n",$i++;
82
83print "not " unless 0 == no_args;
84printf "ok %d\n",$i++;
85
86print "not " unless 5 == no_args +5;
87printf "ok %d\n",$i++;
88
89print "not " unless 4 == &no_args;
90printf "ok %d\n",$i++;
91
92print "not " unless 2 == &no_args(1,2);
93printf "ok %d\n",$i++;
94
95eval "no_args(1)";
96print "not " unless $@;
97printf "ok %d\n",$i++;
98
99##
100##
101##
102
103testing \&one_args, '$';
104
105sub one_args ($) {
106 print "# \@_ = (",join(",",@_),")\n";
107 scalar(@_)
108}
109
110print "not " unless 1 == one_args(1);
111printf "ok %d\n",$i++;
112
113print "not " unless 1 == one_args +5;
114printf "ok %d\n",$i++;
115
116print "not " unless 4 == &one_args;
117printf "ok %d\n",$i++;
118
119print "not " unless 2 == &one_args(1,2);
120printf "ok %d\n",$i++;
121
122eval "one_args(1,2)";
123print "not " unless $@;
124printf "ok %d\n",$i++;
125
126eval "one_args()";
127print "not " unless $@;
128printf "ok %d\n",$i++;
129
130sub one_a_args ($) {
131 print "# \@_ = (",join(",",@_),")\n";
132 print "not " unless @_ == 1 && $_[0] == 4;
133 printf "ok %d\n",$i++;
134}
135
136one_a_args(@_);
137
138##
139##
140##
141
142testing \&over_one_args, '$@';
143
144sub over_one_args ($@) {
145 print "# \@_ = (",join(",",@_),")\n";
146 scalar(@_)
147}
148
149print "not " unless 1 == over_one_args(1);
150printf "ok %d\n",$i++;
151
152print "not " unless 2 == over_one_args(1,2);
153printf "ok %d\n",$i++;
154
155print "not " unless 1 == over_one_args +5;
156printf "ok %d\n",$i++;
157
158print "not " unless 4 == &over_one_args;
159printf "ok %d\n",$i++;
160
161print "not " unless 2 == &over_one_args(1,2);
162printf "ok %d\n",$i++;
163
164print "not " unless 5 == &over_one_args(1,@_);
165printf "ok %d\n",$i++;
166
167eval "over_one_args()";
168print "not " unless $@;
169printf "ok %d\n",$i++;
170
171sub over_one_a_args ($@) {
172 print "# \@_ = (",join(",",@_),")\n";
173 print "not " unless @_ >= 1 && $_[0] == 4;
174 printf "ok %d\n",$i++;
175}
176
177over_one_a_args(@_);
178over_one_a_args(@_,1);
179over_one_a_args(@_,1,2);
180over_one_a_args(@_,@_);
181
182##
183##
184##
185
186testing \&scalar_and_hash, '$%';
187
188sub scalar_and_hash ($%) {
189 print "# \@_ = (",join(",",@_),")\n";
190 scalar(@_)
191}
192
193print "not " unless 1 == scalar_and_hash(1);
194printf "ok %d\n",$i++;
195
196print "not " unless 3 == scalar_and_hash(1,2,3);
197printf "ok %d\n",$i++;
198
199print "not " unless 1 == scalar_and_hash +5;
200printf "ok %d\n",$i++;
201
202print "not " unless 4 == &scalar_and_hash;
203printf "ok %d\n",$i++;
204
205print "not " unless 2 == &scalar_and_hash(1,2);
206printf "ok %d\n",$i++;
207
208print "not " unless 5 == &scalar_and_hash(1,@_);
209printf "ok %d\n",$i++;
210
211eval "scalar_and_hash()";
212print "not " unless $@;
213printf "ok %d\n",$i++;
214
215sub scalar_and_hash_a ($@) {
216 print "# \@_ = (",join(",",@_),")\n";
217 print "not " unless @_ >= 1 && $_[0] == 4;
218 printf "ok %d\n",$i++;
219}
220
221scalar_and_hash_a(@_);
222scalar_and_hash_a(@_,1);
223scalar_and_hash_a(@_,1,2);
224scalar_and_hash_a(@_,@_);
225
226##
227##
228##
229
230testing \&one_or_two, '$;$';
231
232sub one_or_two ($;$) {
233 print "# \@_ = (",join(",",@_),")\n";
234 scalar(@_)
235}
236
237print "not " unless 1 == one_or_two(1);
238printf "ok %d\n",$i++;
239
240print "not " unless 2 == one_or_two(1,3);
241printf "ok %d\n",$i++;
242
243print "not " unless 1 == one_or_two +5;
244printf "ok %d\n",$i++;
245
246print "not " unless 4 == &one_or_two;
247printf "ok %d\n",$i++;
248
249print "not " unless 3 == &one_or_two(1,2,3);
250printf "ok %d\n",$i++;
251
252print "not " unless 5 == &one_or_two(1,@_);
253printf "ok %d\n",$i++;
254
255eval "one_or_two()";
256print "not " unless $@;
257printf "ok %d\n",$i++;
258
259eval "one_or_two(1,2,3)";
260print "not " unless $@;
261printf "ok %d\n",$i++;
262
263sub one_or_two_a ($;$) {
264 print "# \@_ = (",join(",",@_),")\n";
265 print "not " unless @_ >= 1 && $_[0] == 4;
266 printf "ok %d\n",$i++;
267}
268
269one_or_two_a(@_);
270one_or_two_a(@_,1);
271one_or_two_a(@_,@_);
272
273##
274##
275##
276
277testing \&a_sub, '&';
278
279sub a_sub (&) {
280 print "# \@_ = (",join(",",@_),")\n";
281 &{$_[0]};
282}
283
284sub tmp_sub_1 { printf "ok %d\n",$i++ }
285
286a_sub { printf "ok %d\n",$i++ };
287a_sub \&tmp_sub_1;
288
289@array = ( \&tmp_sub_1 );
290eval 'a_sub @array';
291print "not " unless $@;
292printf "ok %d\n",$i++;
293
294##
295##
296##
297
75fc29ea
GS
298testing \&a_subx, '\&';
299
300sub a_subx (\&) {
301 print "# \@_ = (",join(",",@_),")\n";
302 &{$_[0]};
303}
304
305sub tmp_sub_2 { printf "ok %d\n",$i++ }
306a_subx &tmp_sub_2;
307
308@array = ( \&tmp_sub_2 );
309eval 'a_subx @array';
310print "not " unless $@;
311printf "ok %d\n",$i++;
312
313##
314##
315##
316
28757baa 317testing \&sub_aref, '&\@';
318
319sub sub_aref (&\@) {
320 print "# \@_ = (",join(",",@_),")\n";
321 my($sub,$array) = @_;
322 print "not " unless @_ == 2 && @{$array} == 4;
323 print map { &{$sub}($_) } @{$array}
324}
325
326@array = (qw(O K)," ", $i++);
327sub_aref { lc shift } @array;
328print "\n";
329
330##
331##
332##
333
334testing \&sub_array, '&@';
335
336sub sub_array (&@) {
337 print "# \@_ = (",join(",",@_),")\n";
338 print "not " unless @_ == 5;
339 my $sub = shift;
340 print map { &{$sub}($_) } @_
341}
342
343@array = (qw(O K)," ", $i++);
344sub_array { lc shift } @array;
36a5d4ba 345sub_array { lc shift } ('O', 'K', ' ', $i++);
28757baa 346print "\n";
347
348##
349##
350##
351
352testing \&a_hash, '%';
353
354sub a_hash (%) {
355 print "# \@_ = (",join(",",@_),")\n";
356 scalar(@_);
357}
358
359print "not " unless 1 == a_hash 'a';
360printf "ok %d\n",$i++;
361
362print "not " unless 2 == a_hash 'a','b';
363printf "ok %d\n",$i++;
364
365##
366##
367##
368
369testing \&a_hash_ref, '\%';
370
371sub a_hash_ref (\%) {
372 print "# \@_ = (",join(",",@_),")\n";
373 print "not " unless ref($_[0]) && $_[0]->{'a'};
374 printf "ok %d\n",$i++;
375 $_[0]->{'b'} = 2;
376}
377
378%hash = ( a => 1);
379a_hash_ref %hash;
380print "not " unless $hash{'b'} == 2;
381printf "ok %d\n",$i++;
382
383##
384##
385##
386
69dcf70c 387testing \&array_ref_plus, '\@@';
28757baa 388
69dcf70c 389sub array_ref_plus (\@@) {
28757baa 390 print "# \@_ = (",join(",",@_),")\n";
69dcf70c 391 print "not " unless @_ == 2 && ref($_[0]) && 1 == @{$_[0]} && $_[1] eq 'x';
28757baa 392 printf "ok %d\n",$i++;
393 @{$_[0]} = (qw(ok)," ",$i++,"\n");
394}
395
396@array = ('a');
69dcf70c
MB
397{ my @more = ('x');
398 array_ref_plus @array, @more; }
28757baa 399print "not " unless @array == 4;
400print @array;
fb73857a 401
b6c543e3
IZ
402my $p;
403print "not " if defined prototype('CORE::print');
404print "ok ", $i++, "\n";
405
406print "not " if defined prototype('CORE::system');
407print "ok ", $i++, "\n";
408
1c1fc3ea 409print "# CORE::open => ($p)\nnot " if ($p = prototype('CORE::open')) ne '*;$@';
b6c543e3
IZ
410print "ok ", $i++, "\n";
411
412print "# CORE:Foo => ($p), \$@ => `$@'\nnot "
ba5aeb3a 413 if defined ($p = eval { prototype('CORE::Foo') or 1 }) or $@ !~ /^Can't find an opnumber/;
b6c543e3
IZ
414print "ok ", $i++, "\n";
415
fb73857a 416# correctly note too-short parameter lists that don't end with '$',
417# a possible regression.
418
419sub foo1 ($\@);
420eval q{ foo1 "s" };
421print "not " unless $@ =~ /^Not enough/;
422print "ok ", $i++, "\n";
423
424sub foo2 ($\%);
425eval q{ foo2 "s" };
426print "not " unless $@ =~ /^Not enough/;
427print "ok ", $i++, "\n";
57ff9a15
IZ
428
429sub X::foo3;
430*X::foo3 = sub {'ok'};
431print "# $@not " unless eval {X->foo3} eq 'ok';
432print "ok ", $i++, "\n";
433
434sub X::foo4 ($);
435*X::foo4 = sub ($) {'ok'};
436print "not " unless X->foo4 eq 'ok';
437print "ok ", $i++, "\n";
2ba6ecf4
GS
438
439# test if the (*) prototype allows barewords, constants, scalar expressions,
440# globs and globrefs (just as CORE::open() does), all under stricture
441sub star (*&) { &{$_[1]} }
18228614
GS
442sub star2 (**&) { &{$_[2]} }
443sub BAR { "quux" }
2692f720 444sub Bar::BAZ { "quuz" }
2ba6ecf4 445my $star = 'FOO';
13fc5c14
RGS
446star FOO, sub {
447 print "not " unless $_[0] eq 'FOO';
448 print "ok $i - star FOO\n";
449}; $i++;
450star(FOO, sub {
451 print "not " unless $_[0] eq 'FOO';
452 print "ok $i - star(FOO)\n";
453 }); $i++;
454star "FOO", sub {
455 print "not " unless $_[0] eq 'FOO';
456 print qq/ok $i - star "FOO"\n/;
457}; $i++;
458star("FOO", sub {
459 print "not " unless $_[0] eq 'FOO';
460 print qq/ok $i - star("FOO")\n/;
461 }); $i++;
462star $star, sub {
463 print "not " unless $_[0] eq 'FOO';
464 print "ok $i - star \$star\n";
465}; $i++;
466star($star, sub {
467 print "not " unless $_[0] eq 'FOO';
468 print "ok $i - star(\$star)\n";
469 }); $i++;
470star *FOO, sub {
471 print "not " unless $_[0] eq \*FOO;
472 print "ok $i - star *FOO\n";
473}; $i++;
474star(*FOO, sub {
475 print "not " unless $_[0] eq \*FOO;
476 print "ok $i - star(*FOO)\n";
477 }); $i++;
478star \*FOO, sub {
479 print "not " unless $_[0] eq \*FOO;
480 print "ok $i - star \\*FOO\n";
481}; $i++;
482star(\*FOO, sub {
483 print "not " unless $_[0] eq \*FOO;
484 print "ok $i - star(\\*FOO)\n";
485 }); $i++;
486star2 FOO, BAR, sub {
487 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'BAR';
488 print "ok $i - star2 FOO, BAR\n";
489}; $i++;
490star2(Bar::BAZ, FOO, sub {
491 print "not " unless $_[0] eq 'Bar::BAZ' and $_[1] eq 'FOO';
492 print "ok $i - star2(Bar::BAZ, FOO)\n"
493 }); $i++;
494star2 BAR(), FOO, sub {
495 print "not " unless $_[0] eq 'quux' and $_[1] eq 'FOO';
496 print "ok $i - star2 BAR(), FOO\n"
497}; $i++;
498star2(FOO, BAR(), sub {
499 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'quux';
500 print "ok $i - star2(FOO, BAR())\n";
501 }); $i++;
502star2 "FOO", "BAR", sub {
503 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'BAR';
504 print qq/ok $i - star2 "FOO", "BAR"\n/;
505}; $i++;
506star2("FOO", "BAR", sub {
507 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'BAR';
508 print qq/ok $i - star2("FOO", "BAR")\n/;
509 }); $i++;
510star2 $star, $star, sub {
511 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'FOO';
512 print "ok $i - star2 \$star, \$star\n";
513}; $i++;
514star2($star, $star, sub {
515 print "not " unless $_[0] eq 'FOO' and $_[1] eq 'FOO';
516 print "ok $i - star2(\$star, \$star)\n";
517 }); $i++;
518star2 *FOO, *BAR, sub {
519 print "not " unless $_[0] eq \*FOO and $_[1] eq \*BAR;
520 print "ok $i - star2 *FOO, *BAR\n";
521}; $i++;
522star2(*FOO, *BAR, sub {
523 print "not " unless $_[0] eq \*FOO and $_[1] eq \*BAR;
524 print "ok $i - star2(*FOO, *BAR)\n";
525 }); $i++;
526star2 \*FOO, \*BAR, sub {
527 no strict 'refs';
528 print "not " unless $_[0] eq \*{'FOO'} and $_[1] eq \*{'BAR'};
529 print "ok $i - star2 \*FOO, \*BAR\n";
530}; $i++;
531star2(\*FOO, \*BAR, sub {
532 no strict 'refs';
533 print "not " unless $_[0] eq \*{'FOO'} and $_[1] eq \*{'BAR'};
534 print "ok $i - star2(\*FOO, \*BAR)\n";
535 }); $i++;
18228614 536
1c01eb51
GS
537# test scalarref prototype
538sub sreftest (\$$) {
13fc5c14
RGS
539 print "not " unless ref $_[0];
540 print "ok $_[1] - sreftest\n";
1c01eb51
GS
541}
542{
543 no strict 'vars';
544 sreftest my $sref, $i++;
545 sreftest($helem{$i}, $i++);
546 sreftest $aelem[0], $i++;
547}
c2b35b10 548
c035a075
DG
549# test single term
550sub lazy (+$$) {
551 print "not " unless @_ == 3 && ref $_[0] eq $_[1];
552 print "ok $_[2] - non container test\n";
553}
554sub quietlazy (+) { return shift(@_) }
555sub give_aref { [] }
556sub list_or_scalar { wantarray ? (1..10) : [] }
557{
558 my @multiarray = ("a".."z");
559 my %bighash = @multiarray;
560 lazy(\@multiarray, 'ARRAY', $i++);
561 lazy(\%bighash, 'HASH', $i++);
562 lazy({}, 'HASH', $i++);
563 lazy(give_aref, 'ARRAY', $i++);
564 lazy(3, '', $i++); # allowed by prototype, even if runtime error
565 lazy(list_or_scalar, 'ARRAY', $i++); # propagate scalar context
566}
567
c2b35b10 568# test prototypes when they are evaled and there is a syntax error
24cc8ef6
AD
569# Byacc generates the string "syntax error". Bison gives the
570# string "parse error".
5279fd7b 571#
c2b35b10 572for my $p ( "", qw{ () ($) ($@) ($%) ($;$) (&) (&\@) (&@) (%) (\%) (\@) } ) {
f3ca7bab
NC
573 my $warn = "";
574 local $SIG{__WARN__} = sub {
575 my $thiswarn = join("",@_);
576 return if $thiswarn =~ /^Prototype mismatch: sub main::evaled_subroutine/;
577 $warn .= $thiswarn;
578 };
c2b35b10
A
579 my $eval = "sub evaled_subroutine $p { &void *; }";
580 eval $eval;
24cc8ef6 581 print "# eval[$eval]\nnot " unless $@ && $@ =~ /(parse|syntax) error/i;
c2b35b10 582 print "ok ", $i++, "\n";
f3ca7bab
NC
583 if ($warn eq '') {
584 print "ok ", $i++, "\n";
585 } else {
586 print "not ok ", $i++, "# $warn \n";
587 }
c2b35b10 588}
337449a8
JH
589
590# Not $$;$;$
591print "not " unless prototype "CORE::substr" eq '$$;$$';
592print "ok ", $i++, "\n";
6e97e420
SC
593
594# recv takes a scalar reference for its second argument
595print "not " unless prototype "CORE::recv" eq '*\\$$$';
596print "ok ", $i++, "\n";
5b794e05
JH
597
598{
599 my $myvar;
600 my @myarray;
601 my %myhash;
602 sub mysub { print "not calling mysub I hope\n" }
603 local *myglob;
604
605 sub myref (\[$@%&*]) { print "# $_[0]\n"; return "$_[0]" }
606
607 print "not " unless myref($myvar) =~ /^SCALAR\(/;
608 print "ok ", $i++, "\n";
609 print "not " unless myref(@myarray) =~ /^ARRAY\(/;
610 print "ok ", $i++, "\n";
611 print "not " unless myref(%myhash) =~ /^HASH\(/;
612 print "ok ", $i++, "\n";
613 print "not " unless myref(&mysub) =~ /^CODE\(/;
614 print "ok ", $i++, "\n";
615 print "not " unless myref(*myglob) =~ /^GLOB\(/;
616 print "ok ", $i++, "\n";
4eba7d22
RGS
617
618 eval q/sub multi1 (\[%@]) { 1 } multi1 $myvar;/;
a0751766
NC
619 print "not "
620 unless $@ =~ /Type of arg 1 to main::multi1 must be one of \[%\@\] /;
4eba7d22
RGS
621 print "ok ", $i++, "\n";
622 eval q/sub multi2 (\[$*&]) { 1 } multi2 @myarray;/;
a0751766
NC
623 print "not "
624 unless $@ =~ /Type of arg 1 to main::multi2 must be one of \[\$\*&\] /;
4eba7d22
RGS
625 print "ok ", $i++, "\n";
626 eval q/sub multi3 (\[$@]) { 1 } multi3 %myhash;/;
a0751766
NC
627 print "not "
628 unless $@ =~ /Type of arg 1 to main::multi3 must be one of \[\$\@\] /;
4eba7d22
RGS
629 print "ok ", $i++, "\n";
630 eval q/sub multi4 ($\[%]) { 1 } multi4 1, &mysub;/;
a0751766
NC
631 print "not "
632 unless $@ =~ /Type of arg 2 to main::multi4 must be one of \[%\] /;
4eba7d22
RGS
633 print "ok ", $i++, "\n";
634 eval q/sub multi5 (\[$@]$) { 1 } multi5 *myglob;/;
a0751766
NC
635 print "not "
636 unless $@ =~ /Type of arg 1 to main::multi5 must be one of \[\$\@\] /
637 && $@ =~ /Not enough arguments/;
4eba7d22 638 print "ok ", $i++, "\n";
5b794e05 639}
2f758a16 640
d37a9538
ST
641# check that obviously bad prototypes are getting warnings
642{
f3ca7bab 643 local $^W = 1;
d37a9538
ST
644 my $warn = "";
645 local $SIG{__WARN__} = sub { $warn .= join("",@_) };
646
647 eval 'sub badproto (@bar) { 1; }';
648 print "not " unless $warn =~ /Illegal character in prototype for main::badproto : \@bar/;
649 print "ok ", $i++, "\n";
2f758a16 650
d37a9538
ST
651 eval 'sub badproto2 (bar) { 1; }';
652 print "not " unless $warn =~ /Illegal character in prototype for main::badproto2 : bar/;
653 print "ok ", $i++, "\n";
654
655 eval 'sub badproto3 (&$bar$@) { 1; }';
656 print "not " unless $warn =~ /Illegal character in prototype for main::badproto3 : &\$bar\$\@/;
657 print "ok ", $i++, "\n";
658
659 eval 'sub badproto4 (@ $b ar) { 1; }';
660 print "not " unless $warn =~ /Illegal character in prototype for main::badproto4 : \@\$bar/;
661 print "ok ", $i++, "\n";
662}
2f758a16 663
d37a9538
ST
664# make sure whitespace in prototypes works
665eval "sub good (\$\t\$\n\$) { 1; }";
666print "not " if $@;
d731386a 667print "ok ", $i++, "\n";
b8ec4db0
A
668
669# Ought to fail, doesn't in 5.8.1.
670eval 'sub bug (\[%@]) { } my $array = [0 .. 1]; bug %$array;';
671print "not " unless $@ =~ /Not a HASH reference/;
672print "ok ", $i++, "\n";
649d02de
FC
673
674# [perl #75904]
675# Test that the following prototypes make subs parse as unary functions:
676# * \sigil \[...] ;$ ;* ;\sigil ;\[...]
677print "not "
678 unless eval 'sub uniproto1 (*) {} uniproto1 $_, 1' or warn $@;
679print "ok ", $i++, "\n";
680print "not "
681 unless eval 'sub uniproto2 (\$) {} uniproto2 $_, 1' or warn $@;
682print "ok ", $i++, "\n";
683print "not "
684 unless eval 'sub uniproto3 (\[$%]) {} uniproto3 %_, 1' or warn $@;
685print "ok ", $i++, "\n";
686print "not "
687 unless eval 'sub uniproto4 (;$) {} uniproto4 $_, 1' or warn $@;
688print "ok ", $i++, "\n";
689print "not "
690 unless eval 'sub uniproto5 (;*) {} uniproto5 $_, 1' or warn $@;
691print "ok ", $i++, "\n";
692print "not "
693 unless eval 'sub uniproto6 (;\@) {} uniproto6 @_, 1' or warn $@;
694print "ok ", $i++, "\n";
695print "not "
696 unless eval 'sub uniproto7 (;\[$%@]) {} uniproto7 @_, 1' or warn $@;
697print "ok ", $i++, "\n";
c035a075
DG
698print "not "
699 unless eval 'sub uniproto8 (+) {} uniproto8 $_, 1' or warn $@;
700print "ok ", $i++, "\n";
701print "not "
702 unless eval 'sub uniproto9 (;+) {} uniproto9 $_, 1' or warn $@;
703print "ok ", $i++, "\n";
3fa17e3f
NC
704
705{
706 # Lack of prototype on a subroutine definition should override any prototype
707 # on the declaration.
708 sub z_zwap (&);
709
710 local $SIG{__WARN__} = sub {
711 my $thiswarn = join "",@_;
712 if ($thiswarn =~ /^Prototype mismatch: sub main::z_zwap/) {
713 print 'ok ', $i++, "\n";
714 } else {
715 print 'not ok ', $i++, "\n";
716 print STDERR $thiswarn;
717 }
718 };
719
720 eval q{sub z_zwap {return @_}};
721
722 if ($@) {
723 print "not ok ", $i++, "# $@";
724 } else {
725 print "ok ", $i++, "\n";
726 }
727
728
729 my @a = (6,4,2);
730 my @got = eval q{z_zwap(@a)};
731
732 if ($@) {
733 print "not ok ", $i++, " # $@";
734 } else {
735 print "ok ", $i++, "\n";
736 }
737
738 if ("@got" eq "@a") {
739 print "ok ", $i++, "\n";
740 } else {
741 print "not ok ", $i++, " # >@got<\n";
742 }
743}