Changeset 41cde266 for tests/queue.cfa
- Timestamp:
- Dec 17, 2020, 4:18:23 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 089b1a9a, f4f79dd
- Parents:
- c5a98f3 (diff), 68a867ee (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/queue.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/queue.cfa
rc5a98f3 r41cde266 13 13 void ?{}( Fred & fred, int p ) with( fred ) { 14 14 i = p; 15 } 16 Fred *& Next( Fred * n ) { 17 return (Fred *)Next( (Colable *)n ); 15 18 } 16 19 … … 68 71 } 69 72 73 Mary *& Next( Mary * n ) { 74 return (Mary *)Next( (Fred *)n ); 75 } 76 70 77 Queue(Mary) mary; 71 78 QueueIter(Mary) maryIter = { mary };
Note:
See TracChangeset
for help on using the changeset viewer.