Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrency/actors/inherit.cfa

    r77fd9fe2 rf6fd22a4  
    3838        Server2 * s2 = alloc();
    3939        (*s2){};
    40         *s | *dm;
    41         *s2 | *dm2;
     40        *s << *dm;
     41        *s2 << *dm2;
    4242        stop_actor_system();
    4343    }
     
    4949        D_msg2 * dm2 = alloc();
    5050        (*dm2){};
    51         s[0] | *dm;
    52         s[1] | *dm2;
     51        s[0] << *dm;
     52        s[1] << *dm2;
    5353        stop_actor_system();
    5454    }
Note: See TracChangeset for help on using the changeset viewer.