1 2 struct Foo 3 { 4 enum __vector(long[2]) y = 1; 5 } 6 7 struct Bar 8 { 9 __vector(long[2]) x; 10 spam()11 bool spam() const 12 { 13 return x == Foo.y; 14 } 15 } 16 17