Changeset d60a4c2 for tests/coroutine/raii.cfa
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (8 months ago)
- Branches:
- master
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/coroutine/raii.cfa
r7d65715f rd60a4c2 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.