Skip to content

Instantly share code, notes, and snippets.

@Siddhant
Created September 24, 2012 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 Siddhant/3776279 to your computer and use it in GitHub Desktop.
Save Siddhant/3776279 to your computer and use it in GitHub Desktop.
$ perl6 -v
This is perl6 version 2012.09-14-g7d6aa02 built on parrot 4.8.0 revision RELEASE_4_8_0
$ cat null-pmc-error.pl
for 1..10 -> $n {
if $n == 2 {
.say;
}
}
$ perl6 null-pmc-error.pl
Null PMC access in find_method('say')
in block at null-pmc-error.pl:3
in method reify at src/gen/CORE.setting:5239
in method reify at src/gen/CORE.setting:5141
in method reify at src/gen/CORE.setting:5141
in method gimme at src/gen/CORE.setting:5519
in method eager at src/gen/CORE.setting:5498
in method eager at src/gen/CORE.setting:1117
in sub eager at src/gen/CORE.setting:5797
in block at null-pmc-error.pl:1
# Most probably, this is this bug: https://rt.perl.org/rt3/Ticket/Display.html?id=113904
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment