# New Ticket Created by [EMAIL PROTECTED]
# Please include the string: [perl #41733]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=41733 >
Hi There,
Given the following (latest svn today - parrot 0.49+):
.namespace ['Foo']
.sub invoke :vtable
say "you invoked me!"
.return()
.end
.sub main :main
$P0 = newclass "Foo"
$P1 = new "Foo"
$P1()
say "got here"
.end
The final "got here" is never printed.
Also parrot segfaults with the signature:
.sub invoke :vtable :method
...
.end
Not sure if that's allowed (:vtable :method), though.
Cheers,
Rich