blob: 2028648d308a778eef8e064e272ad992742c786d [file] [log] [blame]
struct Foo
{
enum __vector(long[2]) y = 1;
}
struct Bar
{
__vector(long[2]) x;
bool spam() const
{
return x == Foo.y;
}
}