Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / instantiate2.C
blob60d5bd52cb074a8a513cac27dcbb7d88fdb7a621
1 // { dg-do assemble  }
3 template<class T>
4 struct X_two {
5   template <class T2> T2 conv_compare_ge(T2 test) {
6     T2 tmp_value = T2 (0);
7     return (tmp_value > test ? tmp_value : test);
8   }
9 };
11 template int X_two<double>::conv_compare_ge(int);