Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / alias-decl-debug-0.C
blob524216ad5c07b0bcde6f87fed63c841fbcf9cb08
1 // Origin: PR c++/51032
2 // { dg-do compile { target c++11 } }
3 // { dg-skip-if "No stabs" { aarch64*-*-* mmix-*-* *-*-aix* alpha*-*-* hppa*64*-*-* ia64-*-* *-*-vxworks* nios2-*-* } { "*" } { "" } }
4 // { dg-options "-gstabs+" }
6 template <class C>
7 struct A {
8     template<class U> using B = U*;
9     int a;
12 A<int> a;