Add execution tests of ARM EXT intrinsics
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr31442.C
blob7fd20e7ca55db342b63017fa9897760026d87864
1 // { dg-do compile { target c++11 } }
2 template<typename... T, T = 0> struct A {}; // { dg-error "parameter packs|T|the end|parameter packs|anonymous" }
4 struct B
6   template <template <typename...> class C> B(C<int>);
7 };
9 B b = A<int>(); // { dg-error "mismatch|expected" }