struct Foo { int bar; }; class Bar { int foo; }; int main(int argc, const char *argv[]) { Bar b1; Bar b2; b1 == b2; return 0; }