Changes in tests/exceptions/trash.cfa [d00d581:ecfd758]
- File:
-
- 1 edited
-
tests/exceptions/trash.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/trash.cfa
rd00d581 recfd758 1 1 // Make sure throw-catch during unwind does not trash internal data. 2 2 3 exception yin {}; 4 exception yang {}; 3 #include <exception.hfa> 5 4 6 vtable(yin) yin_vt; 7 vtable(yang) yang_vt; 5 EHM_EXCEPTION(yin)(); 6 EHM_EXCEPTION(yang)(); 7 8 EHM_VIRTUAL_TABLE(yin, yin_vt); 9 EHM_VIRTUAL_TABLE(yang, yang_vt); 8 10 9 11 int main(int argc, char * argv[]) {
Note:
See TracChangeset
for help on using the changeset viewer.