# New Ticket Created by Dmitry Kopytov
# Please include the string: [perl #128177]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=128177 >
Hi.
Documentation says that quoting constructs qqw<...> & «...» are
equivalentl. But there is a difference for this cases:
$ perl6 -e ' my $b = "b"; qqw<a /$b/ c>.perl.say '
("a", "/b/", "c")
$ perl6 -e ' my $b = "b"; «a /$b/ c».perl.say '
("a", "/", "b", "/", "c")
Is it an undocumented feature or bug?
--
Dmitry Kopytov