summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/loverload4.C
blob: bdac76f4f566068c8834e5652ee8f86b0a78f70c (plain)
1
2
3
4
5
6
7
8
// { dg-do assemble  }
// Bug: g++ dies on this input.

inline char abs (char x) { return 0; }

extern "C" {
  inline int abs (int x) { return 1; }
}