Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / friend5.C
blobedb9d62335914d21da815469583a87d60b2baaa2
1 // { dg-do run  }
2 class C
4   template <class T>
5   friend void f(T)
6     {
7       C c;
8       c.i = 3;
9     }
11   int i;
15 int main()
17   f(C());