aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic73.C
blob: 533ed46f883cbcec79cbb92271dc2883751fc216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// { dg-do run { target c++11 } }
struct A {};
struct B {};
struct C {};

template<typename... Exceptions> void f(int idx) throw(Exceptions...) {
  if (idx == 0) throw A();
  else if (idx == 1) throw B();
  else if (idx == 2) throw C();
}

extern "C" void abort();

int main()
{
  try {
    f<A, B, C>(0);
    abort();
  } catch (A) {
  }
  try {
    f<A, B, C>(1);
    abort();
  } catch (B) {
  }
  try {
    f<A, B, C>(2);
    abort();
  } catch (C) {
  }
  return 0;
}