Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / overload3.C
blob4d23173397f7beda1f85729001c8cdac4b72c9e9
1 // { dg-do assemble  }
3 template <class T>
4 void g(T, T);
6 template <class T>
7 void g(int*, T);
9 struct S
11   void f() const
12     {
13       g(X, X+3);
14     }
16   double X[3];