Changeset 13492

Show
Ignore:
Timestamp:
09/20/06 12:01:37 (2 years ago)
Author:
audreyt
Message:

* coro.t: unbreak two tests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/unspecced/coro.t

    r13084 r13492  
    5050  my @array = grab 5, { 
    5151    coro { 
     52      state $num; 
    5253      while 1 { 
    53         state $num; 
    5454        yield ++$num; 
    5555      } 
     
    6767    coro { 
    6868        (sub { 
     69          state $num; 
    6970          while 1 { 
    70             state $num; 
    7171            yield ++$num; 
    7272          }