Merge from mainline
[official-gcc.git] / gcc / testsuite / g++.dg / template / using11.C
blob21cc5d2ef2da84ac24d99e88189e0011ca1ceda8
1 struct X {
2   void f();
3 };
5 template <typename T> 
6 struct S : public T {
7   using X::f;
8 };