blob: 705dca39eb0a07b29f964963e4405fbb84352c67 [file] [log] [blame]
struct Attribute { };
template <class T> bool operator == (const Attribute &attr, const T &value);
enum {
anon = 123
};
void test(int foo)
{
if (foo == anon) ; /* { dg-bogus "anonymous type" } */
}