aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t18.C
blob: 760747eeceb55b1f50787b727986c4a562fa8fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link: 

extern void byebye ();
template <class T1, class T2>
struct A
{
  T1 t1;
  T2 t2;
  A() { t1 = 0; t2 = 0; }
  ~A() { byebye(); }
};

template <class Q>
int f (A<int, Q> a) {
  return a.t1;
}

extern A<int,double*> aa;
int foop () { return f(aa); }