aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr86240.C
blob: 16ae89cccd19e7d188ed922c63c40e178937ca11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile }

extern "C" int abs (int);
struct a {
  short b;
} e;
short c;
bool
foo ()
{
  return abs(c) >= e.b;
}