summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/builtin5.C
blob: 051224ffd08adfb95eb6e5406ae581cb62c32d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Verify that builtin is used when declared in namespace std

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

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

void foo() {
  std::printf("%d"); 		// { dg-warning "expects a matching" }
}