* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr63904.C
blob14f03031a9395556162db5ade6c7cbdf11a0fbdc
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-Wno-pedantic" }
4 template<int N>
5 struct foo {
6     constexpr foo() : a() {}
7     int a[N];
8 };
10 int main() {
11   foo< (foo<1>{}).a[0] > f;
12   return 0;