Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / pr31434.C
blobe70bdd17e9a98be93a10e57aeed4c1d3a389eb0a
1 // { dg-do compile { target c++11 } }
2 template<typename... T> int foo(const T&) // { dg-error "not expanded with|T" }
4  union { T t; }; // { dg-error "not expanded with|T" }
5  return t;
8 void bar()
10   foo(0); // { dg-error "no matching" }
11   // { dg-message "(candidate|cannot convert)" "candidate note" { target *-*-* } 10 }