aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/mangle30.C
blob: f0b83dbe9299ba0f951340b1cf25984f59be630f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test for mangling of template args in a typename type.

struct A
{
  template <class T>
  struct B
  {
    typedef T myT;
  };
};

struct C {};

template <class T>
void f (T t, typename T::template B<C>::myT u, typename T::template B<int>::myT v);

int main()
{
  f (A(), C(), 1);
}

// { dg-final { scan-assembler "_Z1fI1AEvT_NS1_1BI1CE3myTENS2_IiE3myTE" } }