# New Ticket Created by François PERRAD
# Please include the string: [perl #61316]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61316 >
The following code works well
$ cat digest.pir
.sub 'main'
$P0 = loadlib 'digest_group'
$P1 = new 'MD5'
$S0 = typeof $P1
say $S0
.end
but when we add the following preamble :
.HLL 'Lua'
.loadlib 'lua_group'
It crashes with a segmentation fault at the first call of
register_raw_nci_method_in_ns() in the generated function
Parrot_MD2_class_init().
François.