rt_gccstream/gcc/testsuite/g++.dg/cpp0x/pr32127.C

8 lines
169 B
C

// { dg-options "-std=c++0x" }
template<typename...T> struct A
{
static T i; // { dg-error "parameter packs|T" }
};
int j = A<int>::i; // { dg-error "not a member" }