add alignment to enable store merging in strict-alignment targets
[official-gcc.git] / gcc / testsuite / g++.dg / ext / builtin3.C
blob31d2ac6f313c0b75c09247e07e0d5b48ca491fa5
1 // Verify that declaring builtin in namespace std doesn't give us
2 // declaration in global namespace
4 // { dg-do compile }
5 // { dg-options "" }
7 namespace std {
8 extern "C" int printf(char*, ...); // { dg-message "std::printf" }
11 void foo() {
12   printf("abc"); // { dg-error "3:'printf' was not declared in this scope; did you mean 'std::printf'\\?" }