blob: 41463c5dde5e2d2130e1fff798cfd8c7d055947d [file] [log] [blame]
// PR c++/100659
template <typename> struct A
{
A::E::V; // { dg-warning "access decl" }
enum { V }; // { dg-error "conflicts with a previous decl" }
};