2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / builtins4.C
blob2cb1552e22bd42165869b92405e2d6be51e937f4
1 // { dg-do run  }
2 // { dg-options "-O2" }
3 // Test whether this builtin minimally works in G++.
4 // Origin: Kaveh Ghazi Jan 16, 2001
5 // Copyright (C) 2001 Free Software Foundation.
6 //
8 namespace std 
10   extern "C" void abort (void);
13 int main ()
15   using namespace std;
16   
17   ::__builtin_printf ("hello world\n");
18   ::__builtin_printf ("\n");
19   ::__builtin_printf ("%s\n", "hello world");
20   ::__builtin_printf ("%c", '\n');
21   
22   return 0;