Esempio n. 1
0
int main(int /* argc */, char* /* argv */ []) {
  foo();
  testExceptionPtr1();
  testExceptionPtr2();
  baz();
  // no return because baz() is [[noreturn]]
}
Esempio n. 2
0
int main(int argc, char *argv[]) {
  foo();
  testExceptionPtr1();
  testExceptionPtr2();
  baz();
  return 0;
}