# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60148] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60148 >
Rakudo r32141 can understand unspaces consisting of a backslash followed by whitespace, but not unspace consisting of only a backslash. $ ./perl6 -e 'my %h; %h{"key"} = "value"; say %h\ {"key"}' # works fine value $ ./perl6 -e 'my %h; %h{"key"} = "value"; say %h\{"key"}' # fails Statement not terminated properly at line 1, near "\\{\"key\"}" [...] Same result for e.g. $a\++; S02 says that both of the above should work and be eqivalent.