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

12 lines
255 B
C

// PR c++/34395
// { dg-do compile }
// { dg-options "-std=c++0x" }
template<int... N> void foo (int... x[N]) // { dg-error "int \\\[N\\\]\\.\\.\\. x" }
{
struct A
{
A () { x; } // { dg-error "use of parameter from containing function" }
};
}