On Fri Jun 25 14:35:36 2010, supernovus wrote: > <supernovus> rakudo: use MONKEY_TYPING; augment class Hash { method hi { say > 'hi' } }; my %h; %h.hi; > <p6eval> rakudo 4e6cce: OUTPUT«Method 'hi' not found for invocant of class > '' in main program body at line 11:/tmp/AayQsvcfGd» > > This seems to be similar to the bugs noted in issue # 75114. > > This time it's not even reporting back a classname in the error message.
In rakudo-latest: $ ./perl6 -e "use MONKEY_TYPING; augment class Hash { method hi { say 'hi' } }; my %h; %h.hi;" hi Closable with tests. -- Will "Coke" Coleda