2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / lookup7.C
blobeacdc897220e7bb1f103287cb3864ca676a77de8
1 // { dg-do assemble  }
2 // Origin: Jason Merrill <jason@cygnus.com>
4 struct A { typedef int B; };
5 template <int B> struct C : public A { 
6   B b; 
7   void f();
8 };
11 template <int B>
12 void C<B>::f() {
13   B b;