summaryrefslogtreecommitdiff
path: root/test/Sema/attr-format_arg.c
blob: 64a23878317c6285b7e4a34285b3ebdab4027431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -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}}
}