libgomp.texi: Fix deprecation note for omp_{get,set}_nested + OMP_NESTED
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp33.C
blob917da1ef2ee9212d3bf28a2f05c0744c1e68d6ea
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 template <class T>
6 struct S
8   template <class U>
9   void g(U u)
10   { i; }
12   int i;
15 int main()
17   S<char> s;
18   s.g(3);