Skip to content

Instantly share code, notes, and snippets.

@dogbert17
Created September 30, 2018 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogbert17/65209e0240b30ca5138ec6853522343a to your computer and use it in GitHub Desktop.
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
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