FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp30.C
blob923ec85a7383d482c0056f7b82b23f45f70687f8
1 // Build don't run:
2 // GROUPS passed templates membertemplates
3 extern "C" int printf(const char*, ...);
5 template <class X>
6 struct S
8   template <class U>
9   void g(U u) { this; }
13 int main()
15   S<char*> s;
16   s.g(3);