aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic-crash2.C
blob: d1913b92d4584b1432b14b7a7a91636db6c7eba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin: PR c++/39637
// { dg-options "-std=gnu++0x" }
// { dg-do "compile" }

template<class... Types>
void
f(Types...)
{
  enum {e = sizeof(Types)}; // { dg-error "parameter packs not expanded with '...'" }
  enum {e1 = sizeof...(Types)};
}

int
main()
{
    f(0);
}

// { dg-message "note" "Types" { target *-*-* } 10 }