Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / mangle2.C
blob81cf2f3deb5ea7dba74fb4953dbd3ca0f7dff8ad
1 // { dg-do assemble  }
2 // Test for overloaded operators in "C" linkage
4 extern "C" {
5 typedef struct b
7   int a;
8 } c;
10 extern const c z;
12 inline bool operator!=(const c& x, const c& y)
14   return x.a != y.a;
18 void foo();
20 void bar(c x)
22   if (x != z)
23     foo();