aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/using32.C
blob: cc0e96ca6b18381ba2bb16390eb0ab3af623c745 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }

struct T { struct type {}; };
struct T2 : T { using T::type; };
struct T3 : T2
{
  struct type {};
  type t;
};