mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 02:36:07 +00:00
12 lines
333 B
C
12 lines
333 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
const char* f(const char *s) __attribute__((format_arg(1)));
|
||
|
|
||
|
void g(const char *s) {
|
||
|
printf("%d", 123);
|
||
|
printf("%d %d", 123); // expected-warning{{more '%' conversions than data arguments}}
|
||
|
|
||
|
printf(f("%d"), 123);
|
||
|
printf(f("%d %d"), 123); // expected-warning{{more '%' conversions than data arguments}}
|
||
|
}
|