blob: d525a472b6109c6f6c34ca7bb7f761f9392939c1 [file] [log] [blame]
// PR c++/51319
// { dg-do compile }
template<int> struct X {};
struct Base
{
enum { a = 1 };
};
struct Der : Base
{
using Base::a;
typedef X<(int)a> Y;
};