Changeset 10b5970 for tests/coroutine
- Timestamp:
- Jan 7, 2025, 3:22:19 PM (9 months ago)
- Branches:
- master
- Children:
- 190a833
- Parents:
- 70670e7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/coroutine/raii.cfa
r70670e7 r10b5970 32 32 coroutine Cor {}; 33 33 34 void ?{}( Cor & this) {34 void ?{}( Cor & ) { 35 35 sout | "Coroutine Ctor"; 36 36 } 37 37 38 void main( Cor & this) {38 void main( Cor & ) { 39 39 Raii raii = { "Coroutine" }; 40 40 sout | "Before Suspend"; … … 43 43 } 44 44 45 void ^?{}( Cor & this) {45 void ^?{}( Cor & ) { 46 46 sout | "Coroutine Dtor"; 47 47 }
Note:
See TracChangeset
for help on using the changeset viewer.