- Timestamp:
 - Jun 3, 2023, 1:41:22 PM (2 years ago)
 - Branches:
 - ast-experimental, master
 - Children:
 - 0794365
 - Parents:
 - bebfc2e
 - File:
 - 
      
- 1 edited
 
- 
          
  tests/concurrency/actors/poison.cfa (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
tests/concurrency/actors/poison.cfa
rbebfc2e r46e6e47 18 18 Server s[10]; 19 19 for ( i; 10 ) { 20 s[i] << FinishedMsg;20 s[i] << finished_msg; 21 21 } 22 22 stop_actor_system(); … … 29 29 Server * s = alloc(); 30 30 (*s){}; 31 (*s) << DeleteMsg;31 (*s) << delete_msg; 32 32 } 33 33 stop_actor_system(); … … 39 39 Server s[10]; 40 40 for ( i; 10 ) 41 s[i] << DestroyMsg;41 s[i] << destroy_msg; 42 42 stop_actor_system(); 43 43 for ( i; 10 )  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.