brintos

brintos / llvm-project-archived public Read only

0
0
Text · 285 B · 304588a Raw
15 lines · cpp
1// RUN: %clangxx -c -o %t %s2// RUN: %llvm_jitlink -slab-allocate=20Mb %t3//4// REQUIRES: system-darwin && host-arch-compatible5 6// Test that trivial throw / catch works.7int main(int argc, char *argv[]) {8  try {9    throw 42;10  } catch (int E) {11    return 42 - E;12  }13  return 1;14}15