summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic172.C
blob: d25d3029a9d7b8de963ed216f8c89c3798da445e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/84454
// { dg-do compile { target c++11 } }

template<class F, class... A>
void
g(F&&, A&&...)
{}

template<class... A>
auto
h(A&&... a) -> decltype(g(0, g<decltype(a)>(a)...))
{
  g(a...);			// { dg-error "no match" }
}

int
main()
{
  h();
}