# New Ticket Created by Zoffix Znet
# Please include the string: [perl #131243]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=131243 >
Both of these forms produce the error below
my %stuff = <fo ba me ow>;
say 'foo bar meows' ~~ m:g/ %stuff \S+ /;
say 'foo bar meows' ~~ m:g/ %(<fo ba me ow>) \S+ /;
# P6opaque: no such attribute '$!reified' in type List when trying to get
# a value in block <unit> at z2.p6 line 8
What did I expect to happen? No idea, I just randomly tried the code. If it's
not meant to work then at least a better error should be shown.