1 // { dg-do compile { target c++11 } }
2 
3 struct A { };
4 struct B: A { };
5 struct C: B { using A::A; };	// { dg-error "direct" }
6