Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel
Last active September 30, 2018 14:42
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 AlexDaniel/72431f1657d1324d41d42dde6f87ff03 to your computer and use it in GitHub Desktop.
Save AlexDaniel/72431f1657d1324d41d42dde6f87ff03 to your computer and use it in GitHub Desktop.
%*ENV<MVM_SPESH_NODELAY> = 1;
%*ENV<MVM_SPESH_BLOCKING> = 1;
my $p = run <perl6 -e>, 「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;」;
exit 42 if $p.status != 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment