summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/using50.C
blob: d525a472b6109c6f6c34ca7bb7f761f9392939c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;
};