2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / builtins9.C
blob2933866fc3b0c0507a2a74cf737cf5fe3fc8a161
1 // { dg-do run  }
2 // Test that inline redeclarations of builtins are emitted.
3 // Origin: Roger Sayle  Mar 28, 2002
4 // Copyright (C) 2002 Free Software Foundation.
6 namespace std {
7    inline int fabs (void) { return 0; }
11 int main ()
13    return std::fabs ();