OSDN Git Service

libgomp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / builtin3.C
1 // Verify that declaring builtin in namespace std doesn't give us
2 // declaration in global namespace
3
4 // { dg-do compile }
5 // { dg-options "" }
6
7 namespace std {
8 extern "C" int printf(char*, ...);
9 }
10
11 void foo() {
12   printf("abc");                // { dg-error "not declared" }
13 }