2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / using7.C
blob390dfbaace9d185fd5bf7d7e50a6662b39571bfa
1 // { dg-do compile }
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>
12     using A<T>::i;
13     int foo() const;
16 struct C {};
18 template <typename T> int B<T>::foo() const
20   return i;