FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp33.C
blob500abe0a30ede13760dff7e5157dce78c8abb51f
1 // Build don't run:
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);