builtin4.C   [plain text]


// Verify that builtin is used when declared in global namespace

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

extern "C" int printf(const char*,...);

void foo() {
  printf("%d"); 		// { dg-warning "too few arguments" }
}