* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr79296.C
blob1ee982c71f0456bdf1c5907e5d959f9c5ae1ffe5
1 // { dg-do compile { target c++11 } }
2 // { dg-require-effective-target lto }
3 // { dg-additional-options "-flto" }
5 // PR 79296 ICE mangling local class of localized instantiation
7 struct X {
8   template <typename T> X (T const *) {
9     struct Z {};
10   }
13 void Baz ()
15   struct Y { } y;
17   0, X (&y);