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

struct H { typedef int type; };
struct J : H
{
  struct type {}; // { dg-message "previous" }
  using H::type; // { dg-error "conflicts" }
};