aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/attr-format_arg.c
blob: 5f06f4ba3fc9d510e07b2b6462d2b6616f191a3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang-cc -fsyntax-only -verify %s

int printf(const char *, ...);

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}}
}