| // RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s |
| using C::g; // expected-error{{using declaration refers into 'C::', which is not a base class of 'D2'}} |
| // We should be able to diagnose these without instantiation. |
| template <class T> struct C : Base { |
| using InnerNS::foo; // expected-error {{not a class}} |
| using Base::bar; // expected-error {{no member named 'bar'}} |
| using Unrelated::foo; // expected-error {{not a base class}} |
| using C::foo; // expected-error {{refers to its own class}} |
| using Subclass::foo; // expected-error {{not a base class}} |