Created
September 30, 2018 13:36
-
-
Save dogbert17/65209e0240b30ca5138ec6853522343a to your computer and use it in GitHub Desktop.
SEGV when run with MVM_SPESH_NODELAY=1 and MVM_SPESH_BLOCKING=1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Test; | |
my class Foo::Bar::Ber { | |
has $.a; has $.b; has $.c; | |
method new ($a?, :$b, :$c) { self.bless: :$a, :$b, :$c } | |
} | |
my Foo::Bar::Ber constant foo3 .= new; | |
Foo::Bar::Ber.new; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment