summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/g++.old-deja/g++.other/mangle2.C
blob: 25bab87a24986a52661014784ce8ea6827bc2203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Test for overloaded operators in "C" linkage
// Build don't link:

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();
}
OpenPOWER on IntegriCloud