This patch ensures that the AST printer outputs the correct C++ type for an inheriting constructor using declaration.
For example, for a using declaration in a code sample like this:
struct A { A(); }; struct B : A { using A::A; };
The AST printer will now print "using A::A" instead of "using A::B".
This bug is a regression since r274049.