aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/loverload4.C
blob: c689bf5169d72abb89be1a9aeecf36691d3922ff (plain)
1
2
3
4
5
6
7
8
// Bug: g++ dies on this input.
// Build don't link:

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

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