Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / friend1.C
blobd177a8045e2e4d78b246c93f23d19fd5bcabc4ed
1 // { dg-do run  }
2 template <class T>
3 void f(T);
5 class C
7   template <class T>
8   friend void f(T);
10   int i;
14 template <class T>
15 void f(T)
17   C c;
18   c.i = 3;
22 int main()
24   f(7);