Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb13.C
blob40c454aae30171f7d5664ff2f00f1c187bb69cee
1 // { dg-do assemble  }
2 template<class T>
3 class Array {
4 public:
5     typedef T T_numtype;
6 };
8 template<class T_array>
9 void f(T_array, typename T_array::T_numtype)
13 void g()
15     f(Array<float>(), float());