[t/spec] Add tricky tests (which pass after latest Rakudo patch), unfudge old simple...
[pugs.git] / t / unspecced / tailcall.t
blobf28a04748b84a54cec284600e5d1c0ff938f131d
1 use v6;
4 say "1..3";
6 sub foo () {
7     say "ok 2";
8     &baz.nextwith("param1", "param2");
11 sub bar ($param1, $param2) {
12     if $param1 eq "param1" and $param2 eq "param2" {
13         say "ok 1";
14     } else {
15         say "not ok 1";
16     }
19 sub baz ($param1, $param2) {
20     if $param1 eq "param1" and $param2 eq "param2" {
21         say "ok 3";
22     } else {
23         say "not ok 3";
24     }
27 bar("param1", "param2");
28 foo();