summaryrefslogtreecommitdiff
path: root/tests/run/cpp_exceptions_nogil_helper.h
blob: 63f159f1d25b7e06d471a89e4d6dbccb0f16fa4f (plain)
1
2
3
4
5
6
void foo(int i) {
  if (i==0)
    return;
  else
    throw i;
}