* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-template2.C
blob12a8d42b31fc36aa8e9c53ad2c50d038afd6f23d
1 // { dg-do compile { target c++11 } }
3 template <class T> struct A
5   T t;
6   constexpr A() { }             // { dg-error "::t" }
7 };
9 int main()
11   constexpr A<int> a;           // { dg-error "A()" }