This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
b852a0cc53e33e0e8a8e92d729282aa09915864a
[perl5.git] / dist / B-Deparse / t / deparse.t
1 #!./perl
2
3 BEGIN {
4     unshift @INC, 't';
5     require Config;
6     if (($Config::Config{'extensions'} !~ /\bB\b/) ){
7         print "1..0 # Skip -- Perl configured without B module\n";
8         exit 0;
9     }
10 }
11
12 use warnings;
13 use strict;
14 BEGIN {
15     # BEGIN block is actually a subroutine :-)
16     return unless $] > 5.009;
17     require feature;
18     feature->import(':5.10');
19 }
20 use Test::More;
21 use Config ();
22
23 use B::Deparse;
24 my $deparse = B::Deparse->new();
25 isa_ok($deparse, 'B::Deparse', 'instantiate a B::Deparse object');
26
27 # Tell B::Deparse about our ambient pragmas
28 { my ($hint_bits, $warning_bits, $hinthash);
29  BEGIN { ($hint_bits, $warning_bits, $hinthash) = ($^H, ${^WARNING_BITS}, \%^H); }
30  $deparse->ambient_pragmas (
31      hint_bits    => $hint_bits,
32      warning_bits => $warning_bits,
33      '%^H'        => $hinthash,
34  );
35 }
36
37 $/ = "\n####\n";
38 while (<DATA>) {
39     chomp;
40     # This code is pinched from the t/lib/common.pl for TODO.
41     # It's not clear how to avoid duplication
42     # Now tweaked a bit to do skip or todo
43     my %reason;
44     foreach my $what (qw(skip todo)) {
45         s/^#\s*\U$what\E\s*(.*)\n//m and $reason{$what} = $1;
46         # If the SKIP reason starts ? then it's taken as a code snippet to
47         # evaluate. This provides the flexibility to have conditional SKIPs
48         if ($reason{$what} && $reason{$what} =~ s/^\?//) {
49             my $temp = eval $reason{$what};
50             if ($@) {
51                 die "# In \U$what\E code reason:\n# $reason{$what}\n$@";
52             }
53             $reason{$what} = $temp;
54         }
55     }
56
57     s/^\s*#\s*(.*)$//mg;
58     my $desc = $1;
59     die "Missing name in test $_" unless defined $desc;
60
61     if ($reason{skip}) {
62         # Like this to avoid needing a label SKIP:
63        Test::More->builder->skip($reason{skip});
64         next;
65     }
66
67     my ($input, $expected);
68     if (/(.*)\n>>>>\n(.*)/s) {
69         ($input, $expected) = ($1, $2);
70     }
71     else {
72         ($input, $expected) = ($_, $_);
73     }
74
75     my $coderef = eval "sub {$input}";
76
77     if ($@) {
78         is($@, "", "compilation of $desc");
79     }
80     else {
81         my $deparsed = $deparse->coderef2text( $coderef );
82         my $regex = $expected;
83         $regex =~ s/(\S+)/\Q$1/g;
84         $regex =~ s/\s+/\\s+/g;
85         $regex = '^\{\s*' . $regex . '\s*\}$';
86
87         local $::TODO = $reason{todo};
88         like($deparsed, qr/$regex/, $desc);
89     }
90 }
91
92 use constant 'c', 'stuff';
93 is((eval "sub ".$deparse->coderef2text(\&c))->(), 'stuff',
94    'the subroutine generated by use constant deparses');
95
96 my $a = 0;
97 is($deparse->coderef2text(sub{(-1) ** $a }), "{\n    (-1) ** \$a;\n}",
98    'anon sub capturing an external lexical');
99
100 use constant cr => ['hello'];
101 my $string = "sub " . $deparse->coderef2text(\&cr);
102 my $val = (eval $string)->() or diag $string;
103 is(ref($val), 'ARRAY', 'constant array references deparse');
104 is($val->[0], 'hello', 'and return the correct value');
105
106 my $path = join " ", map { qq["-I$_"] } @INC;
107
108 $a = `$^X $path "-MO=Deparse" -anlwi.bak -e 1 2>&1`;
109 $a =~ s/-e syntax OK\n//g;
110 $a =~ s/.*possible typo.*\n//;     # Remove warning line
111 $a =~ s{\\340\\242}{\\s} if (ord("\\") == 224); # EBCDIC, cp 1047 or 037
112 $a =~ s{\\274\\242}{\\s} if (ord("\\") == 188); # $^O eq 'posix-bc'
113 $b = <<'EOF';
114 BEGIN { $^I = ".bak"; }
115 BEGIN { $^W = 1; }
116 BEGIN { $/ = "\n"; $\ = "\n"; }
117 LINE: while (defined($_ = <ARGV>)) {
118     chomp $_;
119     our(@F) = split(' ', $_, 0);
120     '???';
121 }
122 EOF
123 is($a, $b,
124    'command line flags deparse as BEGIN blocks setting control variables');
125
126 $a = `$^X $path "-MO=Deparse" -e "use constant PI => 4" 2>&1`;
127 $a =~ s/-e syntax OK\n//g;
128 is($a, "use constant ('PI', 4);\n",
129    "Proxy Constant Subroutines must not show up as (incorrect) prototypes");
130
131 #Re: perlbug #35857, patch #24505
132 #handle warnings::register-ed packages properly.
133 package B::Deparse::Wrapper;
134 use strict;
135 use warnings;
136 use warnings::register;
137 sub getcode {
138    my $deparser = B::Deparse->new();
139    return $deparser->coderef2text(shift);
140 }
141
142 package Moo;
143 use overload '0+' => sub { 42 };
144
145 package main;
146 use strict;
147 use warnings;
148 use constant GLIPP => 'glipp';
149 use constant PI => 4;
150 use constant OVERLOADED_NUMIFICATION => bless({}, 'Moo');
151 use Fcntl qw/O_TRUNC O_APPEND O_EXCL/;
152 BEGIN { delete $::Fcntl::{O_APPEND}; }
153 use POSIX qw/O_CREAT/;
154 sub test {
155    my $val = shift;
156    my $res = B::Deparse::Wrapper::getcode($val);
157    like($res, qr/use warnings/,
158         '[perl #35857] [PATCH] B::Deparse doesnt handle warnings register properly');
159 }
160 my ($q,$p);
161 my $x=sub { ++$q,++$p };
162 test($x);
163 eval <<EOFCODE and test($x);
164    package bar;
165    use strict;
166    use warnings;
167    use warnings::register;
168    package main;
169    1
170 EOFCODE
171
172 # Exotic sub declarations
173 $a = `$^X $path "-MO=Deparse" -e "sub ::::{}sub ::::::{}" 2>&1`;
174 $a =~ s/-e syntax OK\n//g;
175 is($a, <<'EOCODG', "sub :::: and sub ::::::");
176 sub :::: {
177     
178 }
179 sub :::::: {
180     
181 }
182 EOCODG
183
184 # [perl #33752]
185 {
186   my $code = <<"EOCODE";
187 {
188     our \$\x{1e1f}\x{14d}\x{14d};
189 }
190 EOCODE
191   my $deparsed
192    = $deparse->coderef2text(eval "sub { our \$\x{1e1f}\x{14d}\x{14d} }" );
193   s/$ \n//x for $deparsed, $code;
194   is $deparsed, $code, 'our $funny_Unicode_chars';
195 }
196
197 # [perl #62500]
198 $a =
199   `$^X $path "-MO=Deparse" -e "BEGIN{*CORE::GLOBAL::require=sub{1}}" 2>&1`;
200 $a =~ s/-e syntax OK\n//g;
201 is($a, <<'EOCODF', "CORE::GLOBAL::require override causing panick");
202 sub BEGIN {
203     *CORE::GLOBAL::require = sub {
204         1;
205     }
206     ;
207 }
208 EOCODF
209
210 # [perl #93990]
211 @* = ();
212 is($deparse->coderef2text(sub{ print "@{*}" }),
213 q<{
214     print "@{*}";
215 }>, 'curly around to interpolate "@{*}"');
216 is($deparse->coderef2text(sub{ print "@{-}" }),
217 q<{
218     print "@-";
219 }>, 'no need to curly around to interpolate "@-"');
220
221 done_testing();
222
223 __DATA__
224 # A constant
225 1;
226 ####
227 # Constants in a block
228 {
229     no warnings;
230     '???';
231     2;
232 }
233 ####
234 # Lexical and simple arithmetic
235 my $test;
236 ++$test and $test /= 2;
237 >>>>
238 my $test;
239 $test /= 2 if ++$test;
240 ####
241 # list x
242 -((1, 2) x 2);
243 ####
244 # lvalue sub
245 {
246     my $test = sub : lvalue {
247         my $x;
248     }
249     ;
250 }
251 ####
252 # method
253 {
254     my $test = sub : method {
255         my $x;
256     }
257     ;
258 }
259 ####
260 # block with continue
261 {
262     234;
263 }
264 continue {
265     123;
266 }
267 ####
268 # lexical and package scalars
269 my $x;
270 print $main::x;
271 ####
272 # lexical and package arrays
273 my @x;
274 print $main::x[1];
275 ####
276 # lexical and package hashes
277 my %x;
278 $x{warn()};
279 ####
280 # <>
281 my $foo;
282 $_ .= <ARGV> . <$foo>;
283 ####
284 # \x{}
285 my $foo = "Ab\x{100}\200\x{200}\237Cd\000Ef\x{1000}\cA\x{2000}\cZ";
286 ####
287 # s///e
288 s/x/'y';/e;
289 ####
290 # block
291 { my $x; }
292 ####
293 # while 1
294 while (1) { my $k; }
295 ####
296 # trailing for
297 my ($x,@a);
298 $x=1 for @a;
299 >>>>
300 my($x, @a);
301 $x = 1 foreach (@a);
302 ####
303 # 2 arguments in a 3 argument for
304 for (my $i = 0; $i < 2;) {
305     my $z = 1;
306 }
307 ####
308 # 3 argument for
309 for (my $i = 0; $i < 2; ++$i) {
310     my $z = 1;
311 }
312 ####
313 # 3 argument for again
314 for (my $i = 0; $i < 2; ++$i) {
315     my $z = 1;
316 }
317 ####
318 # while/continue
319 my $i;
320 while ($i) { my $z = 1; } continue { $i = 99; }
321 ####
322 # foreach with my
323 foreach my $i (1, 2) {
324     my $z = 1;
325 }
326 ####
327 # foreach
328 my $i;
329 foreach $i (1, 2) {
330     my $z = 1;
331 }
332 ####
333 # foreach, 2 mys
334 my $i;
335 foreach my $i (1, 2) {
336     my $z = 1;
337 }
338 ####
339 # foreach
340 foreach my $i (1, 2) {
341     my $z = 1;
342 }
343 ####
344 # foreach with our
345 foreach our $i (1, 2) {
346     my $z = 1;
347 }
348 ####
349 # foreach with my and our
350 my $i;
351 foreach our $i (1, 2) {
352     my $z = 1;
353 }
354 ####
355 # reverse sort
356 my @x;
357 print reverse sort(@x);
358 ####
359 # sort with cmp
360 my @x;
361 print((sort {$b cmp $a} @x));
362 ####
363 # reverse sort with block
364 my @x;
365 print((reverse sort {$b <=> $a} @x));
366 ####
367 # foreach reverse
368 our @a;
369 print $_ foreach (reverse @a);
370 ####
371 # foreach reverse (not inplace)
372 our @a;
373 print $_ foreach (reverse 1, 2..5);
374 ####
375 # bug #38684
376 our @ary;
377 @ary = split(' ', 'foo', 0);
378 ####
379 # bug #40055
380 do { () }; 
381 ####
382 # bug #40055
383 do { my $x = 1; $x }; 
384 ####
385 # <20061012113037.GJ25805@c4.convolution.nl>
386 my $f = sub {
387     +{[]};
388 } ;
389 ####
390 # bug #43010
391 '!@$%'->();
392 ####
393 # bug #43010
394 ::();
395 ####
396 # bug #43010
397 '::::'->();
398 ####
399 # bug #43010
400 &::::;
401 ####
402 # [perl #77172]
403 package rt77172;
404 sub foo {} foo & & & foo;
405 >>>>
406 package rt77172;
407 foo(&{&} & foo());
408 ####
409 # variables as method names
410 my $bar;
411 'Foo'->$bar('orz');
412 'Foo'->$bar('orz') = 'a stranger stranger than before';
413 ####
414 # constants as method names
415 'Foo'->bar('orz');
416 ####
417 # constants as method names without ()
418 'Foo'->bar;
419 ####
420 # [perl #47359] "indirect" method call notation
421 our @bar;
422 foo{@bar}+1,->foo;
423 (foo{@bar}+1),foo();
424 foo{@bar}1 xor foo();
425 >>>>
426 our @bar;
427 (foo { @bar } 1)->foo;
428 (foo { @bar } 1), foo();
429 foo { @bar } 1 xor foo();
430 ####
431 # SKIP ?$] < 5.010 && "say not implemented on this Perl version"
432 # say
433 say 'foo';
434 ####
435 # SKIP ?$] < 5.010 && "state vars not implemented on this Perl version"
436 # state vars
437 state $x = 42;
438 ####
439 # SKIP ?$] < 5.010 && "state vars not implemented on this Perl version"
440 # state var assignment
441 {
442     my $y = (state $x = 42);
443 }
444 ####
445 # SKIP ?$] < 5.010 && "state vars not implemented on this Perl version"
446 # state vars in anonymous subroutines
447 $a = sub {
448     state $x;
449     return $x++;
450 }
451 ;
452 ####
453 # SKIP ?$] < 5.011 && 'each @array not implemented on this Perl version'
454 # each @array;
455 each @ARGV;
456 each @$a;
457 ####
458 # SKIP ?$] < 5.011 && 'each @array not implemented on this Perl version'
459 # keys @array; values @array
460 keys @$a if keys @ARGV;
461 values @ARGV if values @$a;
462 ####
463 # Anonymous arrays and hashes, and references to them
464 my $a = {};
465 my $b = \{};
466 my $c = [];
467 my $d = \[];
468 ####
469 # SKIP ?$] < 5.010 && "smartmatch and given/when not implemented on this Perl version"
470 # implicit smartmatch in given/when
471 given ('foo') {
472     when ('bar') { continue; }
473     when ($_ ~~ 'quux') { continue; }
474     default { 0; }
475 }
476 ####
477 # conditions in elsifs (regression in change #33710 which fixed bug #37302)
478 if ($a) { x(); }
479 elsif ($b) { x(); }
480 elsif ($a and $b) { x(); }
481 elsif ($a or $b) { x(); }
482 else { x(); }
483 ####
484 # interpolation in regexps
485 my($y, $t);
486 /x${y}z$t/;
487 ####
488 # TODO new undocumented cpan-bug #33708
489 # cpan-bug #33708
490 %{$_ || {}}
491 ####
492 # TODO hash constants not yet fixed
493 # cpan-bug #33708
494 use constant H => { "#" => 1 }; H->{"#"}
495 ####
496 # TODO optimized away 0 not yet fixed
497 # cpan-bug #33708
498 foreach my $i (@_) { 0 }
499 ####
500 # tests with not, not optimized
501 my $c;
502 x() unless $a;
503 x() if not $a and $b;
504 x() if $a and not $b;
505 x() unless not $a and $b;
506 x() unless $a and not $b;
507 x() if not $a or $b;
508 x() if $a or not $b;
509 x() unless not $a or $b;
510 x() unless $a or not $b;
511 x() if $a and not $b and $c;
512 x() if not $a and $b and not $c;
513 x() unless $a and not $b and $c;
514 x() unless not $a and $b and not $c;
515 x() if $a or not $b or $c;
516 x() if not $a or $b or not $c;
517 x() unless $a or not $b or $c;
518 x() unless not $a or $b or not $c;
519 ####
520 # tests with not, optimized
521 my $c;
522 x() if not $a;
523 x() unless not $a;
524 x() if not $a and not $b;
525 x() unless not $a and not $b;
526 x() if not $a or not $b;
527 x() unless not $a or not $b;
528 x() if not $a and not $b and $c;
529 x() unless not $a and not $b and $c;
530 x() if not $a or not $b or $c;
531 x() unless not $a or not $b or $c;
532 x() if not $a and not $b and not $c;
533 x() unless not $a and not $b and not $c;
534 x() if not $a or not $b or not $c;
535 x() unless not $a or not $b or not $c;
536 x() unless not $a or not $b or not $c;
537 >>>>
538 my $c;
539 x() unless $a;
540 x() if $a;
541 x() unless $a or $b;
542 x() if $a or $b;
543 x() unless $a and $b;
544 x() if $a and $b;
545 x() if not $a || $b and $c;
546 x() unless not $a || $b and $c;
547 x() if not $a && $b or $c;
548 x() unless not $a && $b or $c;
549 x() unless $a or $b or $c;
550 x() if $a or $b or $c;
551 x() unless $a and $b and $c;
552 x() if $a and $b and $c;
553 x() unless not $a && $b && $c;
554 ####
555 # tests that should be constant folded
556 x() if 1;
557 x() if GLIPP;
558 x() if !GLIPP;
559 x() if GLIPP && GLIPP;
560 x() if !GLIPP || GLIPP;
561 x() if do { GLIPP };
562 x() if do { no warnings 'void'; 5; GLIPP };
563 x() if do { !GLIPP };
564 if (GLIPP) { x() } else { z() }
565 if (!GLIPP) { x() } else { z() }
566 if (GLIPP) { x() } elsif (GLIPP) { z() }
567 if (!GLIPP) { x() } elsif (GLIPP) { z() }
568 if (GLIPP) { x() } elsif (!GLIPP) { z() }
569 if (!GLIPP) { x() } elsif (!GLIPP) { z() }
570 if (!GLIPP) { x() } elsif (!GLIPP) { z() } elsif (GLIPP) { t() }
571 if (!GLIPP) { x() } elsif (!GLIPP) { z() } elsif (!GLIPP) { t() }
572 if (!GLIPP) { x() } elsif (!GLIPP) { z() } elsif (!GLIPP) { t() }
573 >>>>
574 x();
575 x();
576 '???';
577 x();
578 x();
579 x();
580 x();
581 do {
582     '???'
583 };
584 do {
585     x()
586 };
587 do {
588     z()
589 };
590 do {
591     x()
592 };
593 do {
594     z()
595 };
596 do {
597     x()
598 };
599 '???';
600 do {
601     t()
602 };
603 '???';
604 !1;
605 ####
606 # TODO constant deparsing has been backed out for 5.12
607 # XXXTODO ? $Config::Config{useithreads} && "doesn't work with threads"
608 # tests that shouldn't be constant folded
609 # It might be fundamentally impossible to make this work on ithreads, in which
610 # case the TODO should become a SKIP
611 x() if $a;
612 if ($a == 1) { x() } elsif ($b == 2) { z() }
613 if (do { foo(); GLIPP }) { x() }
614 if (do { $a++; GLIPP }) { x() }
615 >>>>
616 x() if $a;
617 if ($a == 1) { x(); } elsif ($b == 2) { z(); }
618 if (do { foo(); GLIPP }) { x(); }
619 if (do { ++$a; GLIPP }) { x(); }
620 ####
621 # TODO constant deparsing has been backed out for 5.12
622 # tests for deparsing constants
623 warn PI;
624 ####
625 # TODO constant deparsing has been backed out for 5.12
626 # tests for deparsing imported constants
627 warn O_TRUNC;
628 ####
629 # TODO constant deparsing has been backed out for 5.12
630 # tests for deparsing re-exported constants
631 warn O_CREAT;
632 ####
633 # TODO constant deparsing has been backed out for 5.12
634 # tests for deparsing imported constants that got deleted from the original namespace
635 warn O_APPEND;
636 ####
637 # TODO constant deparsing has been backed out for 5.12
638 # XXXTODO ? $Config::Config{useithreads} && "doesn't work with threads"
639 # tests for deparsing constants which got turned into full typeglobs
640 # It might be fundamentally impossible to make this work on ithreads, in which
641 # case the TODO should become a SKIP
642 warn O_EXCL;
643 eval '@Fcntl::O_EXCL = qw/affe tiger/;';
644 warn O_EXCL;
645 ####
646 # TODO constant deparsing has been backed out for 5.12
647 # tests for deparsing of blessed constant with overloaded numification
648 warn OVERLOADED_NUMIFICATION;
649 ####
650 # TODO Only strict 'refs' currently supported
651 # strict
652 no strict;
653 $x;
654 ####
655 # TODO Subsets of warnings could be encoded textually, rather than as bitflips.
656 # subsets of warnings
657 no warnings 'deprecated';
658 my $x;
659 ####
660 # TODO Better test for CPAN #33708 - the deparsed code has different behaviour
661 # CPAN #33708
662 use strict;
663 no warnings;
664
665 foreach (0..3) {
666     my $x = 2;
667     {
668         my $x if 0;
669         print ++$x, "\n";
670     }
671 }
672 ####
673 # no attribute list
674 my $pi = 4;
675 ####
676 # SKIP ?$] > 5.013006 && ":= is now a syntax error"
677 # := treated as an empty attribute list
678 no warnings;
679 my $pi := 4;
680 >>>>
681 no warnings;
682 my $pi = 4;
683 ####
684 # : = empty attribute list
685 my $pi : = 4;
686 >>>>
687 my $pi = 4;
688 ####
689 # in place sort
690 our @a;
691 my @b;
692 @a = sort @a;
693 @b = sort @b;
694 ();
695 ####
696 # in place reverse
697 our @a;
698 my @b;
699 @a = reverse @a;
700 @b = reverse @b;
701 ();
702 ####
703 # #71870 Use of uninitialized value in bitwise and B::Deparse
704 my($r, $s, @a);
705 @a = split(/foo/, $s, 0);
706 $r = qr/foo/;
707 @a = split(/$r/, $s, 0);
708 ();
709 ####
710 # package declaration before label
711 {
712     package Foo;
713     label: print 123;
714 }
715 ####
716 # shift optimisation
717 shift;
718 >>>>
719 shift();
720 ####
721 # shift optimisation
722 shift @_;
723 ####
724 # shift optimisation
725 pop;
726 >>>>
727 pop();
728 ####
729 # shift optimisation
730 pop @_;
731 ####
732 #[perl #20444]
733 "foo" =~ (1 ? /foo/ : /bar/);
734 "foo" =~ (1 ? y/foo// : /bar/);
735 "foo" =~ (1 ? y/foo//r : /bar/);
736 "foo" =~ (1 ? s/foo// : /bar/);
737 >>>>
738 'foo' =~ ($_ =~ /foo/);
739 'foo' =~ ($_ =~ tr/fo//);
740 'foo' =~ ($_ =~ tr/fo//r);
741 'foo' =~ ($_ =~ s/foo//);
742 ####
743 # The fix for [perl #20444] broke this.
744 'foo' =~ do { () };
745 ####
746 # Test @threadsv_names under 5005threads
747 foreach $' (1, 2) {
748     sleep $';
749 }
750 ####
751 # y///r
752 tr/a/b/r;
753 ####
754 # y/uni/code/
755 tr/\x{345}/\x{370}/;
756 ####
757 # [perl #90898]
758 <a,>;
759 ####
760 # [perl #91008]
761 each $@;
762 keys $~;
763 values $!;
764 ####
765 # readpipe with complex expression
766 readpipe $a + $b;
767 ####
768 # aelemfast
769 $b::a[0] = 1;
770 ####
771 # aelemfast for a lexical
772 my @a;
773 $a[0] = 1;
774 ####
775 # feature features without feature
776 BEGIN {
777     delete $^H{'feature_say'};
778     delete $^H{'feature_state'};
779     delete $^H{'feature_switch'};
780 }
781 CORE::state $x;
782 CORE::say $x;
783 CORE::given ($x) {
784     CORE::when (3) {
785         continue;
786     }
787     CORE::default {
788         CORE::break;
789     }
790 }
791 CORE::evalbytes '';
792 () = CORE::__SUB__;
793 ####
794 # $#- $#+ $#{%} etc.
795 my @x;
796 @x = ($#{`}, $#{~}, $#{!}, $#{@}, $#{$}, $#{%}, $#{^}, $#{&}, $#{*});
797 @x = ($#{(}, $#{)}, $#{[}, $#{{}, $#{]}, $#{}}, $#{'}, $#{"}, $#{,});
798 @x = ($#{<}, $#{.}, $#{>}, $#{/}, $#{?}, $#{=}, $#+, $#{\}, $#{|}, $#-);
799 @x = ($#{;}, $#{:});
800 ####
801 # ${#} interpolated (the first line magically disables the warning)
802 () = *#;
803 () = "${#}a";
804 ####
805 # ()[...]
806 my(@a) = ()[()];
807 ####
808 # sort(foo(bar))
809 # sort(foo(bar)) is interpreted as sort &foo(bar)
810 # sort foo(bar) is interpreted as sort foo bar
811 # parentheses are not optional in this case
812 print sort(foo('bar'));
813 >>>>
814 print sort(foo('bar'));
815 ####
816 # substr assignment
817 substr(my $a, 0, 0) = (foo(), bar());
818 $a++;
819 ####
820 # hint hash
821 BEGIN { $^H{'foo'} = undef; }
822 {
823  BEGIN { $^H{'bar'} = undef; }
824  {
825   BEGIN { $^H{'baz'} = undef; }
826   {
827    print $_;
828   }
829   print $_;
830  }
831  print $_;
832 }
833 BEGIN { $^H{q[']} = '('; }
834 print $_;
835 ####
836 # hint hash changes that serialise the same way with sort %hh
837 BEGIN { $^H{'a'} = 'b'; }
838 {
839  BEGIN { $^H{'b'} = 'a'; delete $^H{'a'}; }
840  print $_;
841 }
842 print $_;
843 ####
844 # [perl #47361] do({}) and do +{} (variants of do-file)
845 do({});
846 do +{};
847 sub foo::do {}
848 package foo;
849 CORE::do({});
850 CORE::do +{};
851 >>>>
852 do({});
853 do({});
854 package foo;
855 CORE::do({});
856 CORE::do({});
857 ####
858 # [perl #77096] functions that do not follow the llafr
859 () = (return 1) + time;
860 () = (return ($1 + $2) * $3) + time;
861 () = (return ($a xor $b)) + time;
862 () = (do 'file') + time;
863 () = (do ($1 + $2) * $3) + time;
864 () = (do ($1 xor $2)) + time;
865 () = (goto 1) + 3;
866 () = (require 'foo') + 3;
867 () = (require foo) + 3;
868 () = (CORE::dump 1) + 3;
869 () = (last 1) + 3;
870 () = (next 1) + 3;
871 () = (redo 1) + 3;
872 () = (-R $_) + 3;
873 () = (-W $_) + 3;
874 () = (-X $_) + 3;
875 () = (-r $_) + 3;
876 () = (-w $_) + 3;
877 () = (-x $_) + 3;
878 ####
879 # Precedence conundrums with argument-less function calls
880 () = (eof) + 1;
881 () = (return) + 1;
882 () = (return, 1);
883 () = warn;
884 () = warn() + 1;
885 () = setpgrp() + 1;
886 ####
887 # [perl #63558] open local(*FH)
888 open local *FH;
889 pipe local *FH, local *FH;
890 ####
891 # [perl #74740] -(f()) vs -f()
892 $_ = -(f());