OSDN Git Service

* typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / builtins9.C
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.
5
6 namespace std {
7    inline int fabs (void) { return 0; }
8 }
9
10
11 int main ()
12 {
13    return std::fabs ();
14 }