You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
350 B
12 lines
350 B
// RUN: %clang_cc1 -fsyntax-only -verify=WARNING-ON %s
|
|
// RUN: %clang_cc1 -fsyntax-only -Wno-format-insufficient-args -verify=WARNING-OFF %s
|
|
|
|
|
|
int printf(const char * format, ...);
|
|
|
|
int main(void) {
|
|
int patatino = 42;
|
|
printf("%i %i", patatino); // WARNING-ON-warning {{more '%' conversions than data arguments}}
|
|
// WARNING-OFF-no-diagnostics
|
|
}
|