aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typedef3.C
blob: 110e4814515559ab20d877eef6849849c5bd0712 (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
// Build don't link:

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);
}