Changes in tests/exceptions/except-0.cfa [3b9c674:c0b2a631]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/except-0.cfa
r3b9c674 rc0b2a631 19 19 }; 20 20 21 void ?{}(signal_exit &this, const char * area) {22 this .area = area;23 } 24 25 void ^?{}(signal_exit &this) {26 printf("Exiting: %s\n", this .area);21 void ?{}(signal_exit * this, const char * area) { 22 this->area = area; 23 } 24 25 void ^?{}(signal_exit * this) { 26 printf("Exiting: %s\n", this->area); 27 27 // sout | "Exiting:" | this->area; 28 28 } … … 242 242 243 243 // Uncaught termination test. 244 /* Removed due to non-deterministic output.245 244 printf("Throw uncaught.\n"); 246 245 yang z; 247 246 terminate(&z); 248 */ 249 } 247 }
Note: See TracChangeset
for help on using the changeset viewer.