Changeset 49510db for tests/collections/queue.cfa
- Timestamp:
- Jan 29, 2025, 9:09:20 AM (12 months ago)
- Branches:
- master
- Children:
- a22e8b4
- Parents:
- a950021 (diff), c699602 (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
-
tests/collections/queue.cfa (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/queue.cfa
ra950021 r49510db 28 28 } 29 29 sout | "empty" | nl; 30 30 31 31 for ( i; 10 ) { 32 32 add( fred, *new( 2 * i ) ); … … 48 48 } 49 49 sout | nl; 50 50 51 51 for ( i; 10 ) { 52 52 add( fred, *new( 2 * i + 1 ) ); … … 133 133 int j; 134 134 }; 135 __attribute__((unused)) 135 136 void ?{}( Mary & mary ) { abort(); } 136 137 void ?{}( Mary & mary, int p ) with( mary ) { … … 150 151 } 151 152 sout | "empty" | nl; 152 153 153 154 for ( i; 10 ) { 154 155 add( mary, *new( 2 * i ) ); … … 161 162 } 162 163 sout | nl; 163 164 164 165 for ( i; 9 ) { 165 166 delete( &drop( mary ) ); … … 170 171 } 171 172 sout | nl; 172 173 173 174 for ( i; 10 ) { 174 175 add( mary, *new( 2 * i + 1 ) );
Note:
See TracChangeset
for help on using the changeset viewer.