OSDN Git Service

up
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / c-inline.C
1 // Bug: the compiler gets hopelessly confused.
2 // Build don't link:
3
4 #line 1 "c-inline.h"
5 #pragma interface
6 inline double abs (double) { return 0.0; }
7 inline short abs (short) { return 0; }
8 #line 2 "c-inline.C"
9 extern "C" {
10   inline int abs (int) { return 0; } // causes segfault - 
11 }