# New Ticket Created by  Zoffix Znet 
# Please include the string:  [perl #132210]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=132210 >


IRC: https://irclog.perlgeek.de/perl6/2017-10-03#i_15250671

$ perl6  -e 'm: sub x (:$param) {say $param}; sub c (:&funk:(:$param)!) { funk 
:42param  }; c(:funk(&x))'
Required named parameter 'funk:(:$param)' not passed
  in sub c at -e line 1
  in block <unit> at -e line 1

$ perl6  -e 'm: sub x (:$param) {say $param}; sub c (:&funk:(:$param) is 
required) { funk :42param  }; c(:funk(&x))'
Required named parameter 'funk:(:$param)' not passed

It's possible this bug is related to 
https://rt.perl.org/Ticket/Display.html?id=132209

Reply via email to