* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-debug-0.C
blob8464aa35a1a011c0b5f5d954d31066e28e84766a
1 // Origin: PR c++/51032
2 // { dg-do compile { target { c++11 && stabs } } }
3 // { dg-options "-gstabs+" }
5 template <class C>
6 struct A {
7     template<class U> using B = U*;
8     int a;
9 };
11 A<int> a;