source: src/tests/except-3.c @ 0ad0c55

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 0ad0c55 was e9145a3, checked in by Andrew Beach <ajbeach@…>, 7 years ago

Updated exception tests to exception structures. Should be re-orginized still.

  • Property mode set to 100644
File size: 316 bytes
Line 
1// Test that __attribute__((cleanup(...))) is working.
2
3#include <stdio.h>
4#include "except-mac.h"
5TRIVIAL_EXCEPTION(myth)
6
7int main (int argc, char * argv[]) {
8        try {
9                try {
10                        printf("throw [");
11                        THROW(&(myth){});
12                } finally {
13                        printf("] unwind <");
14                }
15        } catch (myth * error) {
16                printf("> catch\n");
17        }
18}
Note: See TracBrowser for help on using the repository browser.