1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// { dg-do assemble } // Test for overloaded operators in "C" linkage extern "C" { typedef struct b { int a; } c; extern const c z; inline bool operator!=(const c& x, const c& y) { return x.a != y.a; } } void foo(); void bar(c x) { if (x != z) foo(); }