aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/name-clash9.C
blob: 1e04fafd5b9fb96c9882763e1993ebe03509df86 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile }
// PR c++/48010

struct A
{
  struct type {}; // { dg-message "previous" }
  typedef int type; // { dg-error "conflicts" }
};