summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typedef3.C
blob: 3787deada67bf767a91d0a2d1eed6519b46a7267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do assemble  }

template <class T>
void f(T, T)
{
}

struct A {
  typedef enum {
    VAL1
  } result_t;
};

struct B {
  typedef enum {
    VAL2
  } result_t;
};


void g()
{
  f(A::VAL1, A::VAL1);
  f(B::VAL2, B::VAL2);
}