blob: 051224ffd08adfb95eb6e5406ae581cb62c32d29 [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 "expects a matching" }
}