aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/builtin3.C
blob: 3d06dd7534ae146e63b529de21cfc74bef71cbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Verify that declaring builtin in namespace std doesn't give us
// declaration in global namespace

// { dg-do compile }
// { dg-options "" }

namespace std {
extern "C" int printf(char*, ...);
}

void foo() {
  printf("abc"); 		// { dg-error "not declared" }
}