# New Ticket Created by Ilya Belikin
# Please include the string: [perl #64268]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64268 >
Hi there,
rakudo> my @a = 1,3,2; say @a.sort: {1}
132 # :)
rakudo> my @a = 1,3,2; say @a.=sort: {1}
Statement not terminated properly at line 1, near ": {1}\n" # :(
rakudo> my @a = 1,3,2; say @a.=sort;
123 # :)
ihrd: std: my @a = 1,2,3; @a.=sort: {1}
p6eval: std 26019: OUTPUT«ok 00:02 37m»
Ilya