Update ChangeLogs and version numbers for 2.95.3 release
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t31.C
blob8800ebe7ca89c14fa5edd0cba5998854e545898a
1 // Build don't link: 
3 struct B { int foo (); };
4 int B::foo() { return 37; }
6 template <class A> struct X {
7   void f();
8 };
10 template <class A> void X<A>::f ()
13 X<int> x;
15 void xyzzy () {
16   x.f ();