Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / pr31437.C
blob812c695f4ec01c14bff2dc20c9157f759afa1df2
1 // { dg-options "-std=gnu++0x" }
2 template <typename... T> struct A // { dg-error "candidates|A" }
4   A(T* p) {  // { dg-error "parameter packs|T" }
5    (A<T...>*)(p); 
6   }
7 };
9 A<int> a(0); // { dg-error "no matching" }