1 struct Attribute { };
2 
3 template <class T> bool operator == (const Attribute &attr, const T &value);
4 
5 enum {
6   anon = 123
7 };
8 
test(int foo)9 void test(int foo)
10 {
11   if (foo == anon) ;  /* { dg-bogus "anonymous type" } */
12 }
13