On Sat Oct 17 06:05:10 2015, r...@hoelz.ro wrote: > Possibly related to #125782. > > If you run this code: > > Supply.interval(1).tap(-> { say 'hi' }); > sleep 5; > > ...you get no input, because the block provided to tap is argless. > The signature verification failure is silently swallowed.
Fixed now: perl6-m -e "Supply.interval(1).tap(-> { say 'hi' }); sleep 5;" Unhandled exception in code scheduled on thread 4 Too many positionals passed; expected 0 arguments but got 1 in block at -e:1 Tagging testneeded.