For example this won't fold using the `zc` command: ```raku sub test (*@a where { .all > 0 }) { say @a; } ``` while this will: ```raku sub test (*@a where { .all > 0 }) { say @a; } ```