OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / builtin5.C
1 // Verify that builtin is used when declared in namespace std
2
3 // { dg-do compile }
4 // { dg-options "-Wall" }
5
6 namespace std {
7   extern "C" int printf(const char*,...);
8 }
9
10 void foo() {
11   std::printf("%d");            // { dg-warning "too few arguments" }
12 }