Changes between Initial Version and Version 1 of Ticket #629

Show
Ignore:
Timestamp:
04/30/09 17:01:38 (13 years ago)
Author:
coke
Comment:

Updated description with simpler test case.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #629

    • Property summary changed from exception in anon sub with duplicate name bus errors to exception from :immediate sub bus errors.
  • Ticket #629 – description

    initial v1  
    11{{{ 
    22$ more foo.pir 
    3 .sub asdf :anon :immediate 
     3.sub 'foo' :immediate 
    44  die 'no' 
    5 .end 
    6  
    7 .sub adsf 
    8 say 'hi' 
    95.end 
    106$ ./parrot foo.pir 
    117no 
    12 current instr.: 'asdf' pc 0 (foo.pir:2) 
     8current instr.: 'foo' pc 0 (foo.pir:2) 
    139Bus error 
    1410}}}