blob: 3fbe96c3ce8e3c4c3764f7e5023ea5974830ad6b [file] [log] [blame]
// { dg-do compile }
struct H { typedef int type; };
struct J : H
{
struct type {}; // { dg-message "previous" }
using H::type; // { dg-error "conflicts" }
};