summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/alias-decl-debug-0.C
blob: 63655286b037f9cb178f9e110473adf3d3bf99c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Origin: PR c++/51032
// { dg-skip-if "No stabs" { mmix-*-* *-*-aix* alpha*-*-* hppa*64*-*-* ia64-*-* *-*-vxworks* } { "*" } { "" } }
// { dg-options "-std=c++0x -gstabs+" }

template <class C>
struct A {
    template<class U> using B = U*;
    int a;
};

A<int> a;