Changeset d00d581 for tests/exceptions/cancel
- Timestamp:
- Aug 18, 2021, 2:04:55 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
- Children:
- fe8aa21
- Parents:
- 6d63c14
- Location:
- tests/exceptions/cancel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/cancel/coroutine.cfa
r6d63c14 rd00d581 2 2 3 3 #include <coroutine.hfa> 4 #include <exception.hfa>5 4 6 EHM_EXCEPTION(internal_error)();7 EHM_VIRTUAL_TABLE(internal_error, internal_vt);5 exception internal_error {}; 6 vtable(internal_error) internal_vt; 8 7 9 8 coroutine WillCancel {}; -
tests/exceptions/cancel/thread.cfa
r6d63c14 rd00d581 2 2 3 3 #include <thread.hfa> 4 #include <exception.hfa>5 4 6 EHM_EXCEPTION(internal_error)();7 EHM_VIRTUAL_TABLE(internal_error, internal_vt);5 exception internal_error {}; 6 vtable(internal_error) internal_vt; 8 7 9 8 thread WillCancel {};
Note: See TracChangeset
for help on using the changeset viewer.