Reverting merge from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-debug-0.C
blob04e9b7065bf362a152983f481c81e1293290af52
1 // Origin: PR c++/51032
2 // { dg-skip-if "No stabs" { aarch64*-*-* mmix-*-* *-*-aix* alpha*-*-* hppa*64*-*-* ia64-*-* *-*-vxworks* } { "*" } { "" } }
3 // { dg-options "-std=c++11 -gstabs+" }
5 template <class C>
6 struct A {
7     template<class U> using B = U*;
8     int a;
9 };
11 A<int> a;