Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / using2.C
blob5d21f575b3ce1fc1bdcabc5299533fd0f7d0dc67
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 22 Jul 2003 <nathan@codesourcery.com>
6 // PR 9447. Using decls in template classes.
8 template <class T>
9 struct Foo {
10   int i; // { dg-error "Foo" }
13 struct Baz 
15   int i; // { dg-error "Baz" }
18 template <class T>
19 struct Bar : public Foo<T>, Baz {
20   using Foo<T>::i;
21   using Baz::i;
23   int foo () { return i; } // { dg-error "request for member" }
26 void foo (Bar<int> &bar)
28   bar.foo(); // { dg-message "instantiated" }