3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 1 Aug 2003 <nathan@codesourcery.com>
6 // PR 9447. Using decls in reopened template classes.
8 template <typename> struct A { int i; };
10 template <typename T> struct B : public A<T>
18 template <typename T> int B<T>::foo() const