# New Ticket Created by Matt Diephouse
# Please include the string: [perl #39908]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=39908 >
Example:
mini:~/Projects/parrot mdiep$ cat test.pir
.sub main :main
print $S
print "\n"
end
.end
mini:~/Projects/parrot mdiep$ parrot test.pir
error:imcc:The opcode 'print' (print<0>) was not found. Check the
type and number of the arguments
in file 'test.pir' line 2
mini:~/Projects/parrot mdiep$
That ought to throw an error. Instead, it parses it but doesn't treat
$S as a register. Note that this works for all register types.
--
Matt Diephouse