Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / typedef3.C
blob3787deada67bf767a91d0a2d1eed6519b46a7267
1 // { dg-do assemble  }
3 template <class T>
4 void f(T, T)
8 struct A {
9   typedef enum {
10     VAL1
11   } result_t;
14 struct B {
15   typedef enum {
16     VAL2
17   } result_t;
21 void g()
23   f(A::VAL1, A::VAL1);
24   f(B::VAL2, B::VAL2);