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