# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #63892]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63892 >
<masak> rakudo: my $a = "foo"; $a ~~ /$a/; say "alive"
<p6eval> rakudo 5b1ff9: OUTPUT«Null PMC access in get_string() [...]
<masak> is this a known one? how do I work around it?
* masak submits rakudobug
<masak> rakudo: my $a = "foo"; my $workaround = eval("/'$a'/"); say $a
~~ $workaround
<p6eval> rakudo 5b1ff9: OUTPUT«foo»
<masak> that works.