# New Ticket Created by Alex Jakimenko # Please include the string: [perl #128304] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128304 >
Code: .say for qww<foo „hello world” bar> Result: foo „hello world” bar Quote protection should work in this case, just like it works here: Code: .say for qww<foo “hello world” bar> Result: foo hello world bar Also, in case someone didn't know, you can use such quotation marks in other places in Perl 6: Code: say „hello world” Result: hello world <TimToady> I'm fine with making „hello world” work there IRC log: http://irclog.perlgeek.de/perl6/2016-05-31#i_12581787
