* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-synth1.C
blob27375e2cf60fa7105015995908c3c072e0d25375
1 // PR c++/46472
2 // { dg-do compile { target c++11 } }
4 template<class T> struct A {
5   T t;
6   constexpr A(){}
7 };
9 struct B
11   A<int> a;
14 B b;