# New Ticket Created by Moritz Lenz
# Please include the string: [perl #61608]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61608 >
Rakudo r34146:
$ ./perl6 -e '@*INC.push("b")' # lives, rakudo++
$ ./perl6 -e 'my @a; push(@a, "b")' # also works
$ ./perl6 -e 'push(@*INC, "b")'
No applicable methods.
current instr.: '_block14' pc 71 (EVAL_13:42)
called from Sub 'parrot;PCT;HLLCompiler;eval' pc 892
(src/PCT/HLLCompiler.pir:508)
called from Sub 'parrot;PCT;HLLCompiler;command_line' pc 1436
(src/PCT/HLLCompiler.pir:768)
called from Sub 'parrot;Perl6;Compiler;main' pc 18688 (perl6.pir:162)
*** glibc detected *** corrupted double-linked list: 0x09be32a8 ***
Aborted
Moritz