blob: 00a5b1108ea49484fecd06343037c8bb1641cf2f [file] [log] [blame]
// This testcase doesn't actually DO any EH
#include <stdio.h>
static void foo() {}
int main() {
try {
foo();
} catch(...) {
return 1;
}
printf("All ok\n");
return 0;
}