blob: 2601a12e301698608e092a6c2b64f205269a4db9 [file] [log] [blame]
// 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 "too few arguments" }
}