Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / using10.C
blob8f0cbda2a8881f5841a7e339ca5b0c70ef203761
1 // PR c++/22136
3 struct B { 
4   void foo(); 
5 }; 
6  
7 template <typename T> class I : public B {}; 
8  
9 template <typename T> class D : private I<T> { 
10   I<T>::B::foo; 
11 };