1 // { dg-do compile }
2 
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 1 Aug 2003 <nathan@codesourcery.com>
5 
6 // PR 9447. Using decls in reopened template classes.
7 
8 template <typename> struct A { int i; };
9 
10 template <typename T> struct B : public A<T>
11 {
12     using A<T>::i;
13     int foo() const;
14 };
15 
16 struct C {};
17 
foo()18 template <typename T> int B<T>::foo() const
19 {
20   return i;
21 }
22