Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / using5.C
blob096ddc0b7cd0dd3fcca94e4d4745dd5a226d7628
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 31 Jul 2003 <nathan@codesourcery.com>
6 // PR 9447. further test cases for dependent using decl
8 template <typename T> struct Base;
10 template <typename T> struct Derived : public Base<T> {
11   using Base<T>::i;
12   
13   Derived() { i; }
14   
15   int get_i() { return i.f(); }
16