12 lines
350 B
C
12 lines
350 B
C
|
// 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
|
||
|
}
|