// { dg-do compile } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 31 Jul 2003 // PR 9447. further test cases for dependent using decl template struct Base; template struct Derived : public Base { using Base::i; Derived() { i; } int get_i() { return i.f(); } };