[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using50.C
blobd525a472b6109c6f6c34ca7bb7f761f9392939c1
1 // PR c++/51319
2 // { dg-do compile }
4 template<int> struct X {};
6 struct Base 
8     enum { a = 1 };
9 };
11 struct Der : Base 
13     using Base::a;
14     typedef X<(int)a> Y;