URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.other/] [mangle2.C] - Rev 12
Compare with Previous | Blame | View Log
// { 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();
}