Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp31.C
blobad6688718bd3cd0a49ed4b3108a6727efaabddaf
1 // { dg-do link  }
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 struct S
7   template <class U>
8   void g(U u)
9   { this; }
12 int main()
14   S s;
15   s.g(3);