* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-template2.C
blobfcb405c157623776985a56efea737bb308317858
1 // PR c++/50614
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fcompare-debug" }
5 struct A
7   int f ();
8 };
10 template <int> struct B : A
12   int i = this->f ();
15 B<0> b;