aboutsummaryrefslogtreecommitdiff
path: root/clang/test/FixIt/attr-format.c
blob: b2c1f75dad506d067a19b3a8c4de9d244d0928a4 (plain)
1
2
3
4
5
6
7
8
9
// RUN: not %clang_cc1 %s -fsyntax-only -fdiagnostics-parseable-fixits 2>&1 | FileCheck %s

// CHECK: fix-it:"{{.*}}attr-format.c":{4:36-4:37}:"0"
__attribute__((format(strftime, 1, 1)))
void my_strftime(const char *fmt);

// CHECK: fix-it:"{{.*}}attr-format.c":{8:34-8:36}:"2"
__attribute__((format(printf, 1, 10)))
void my_strftime(const char *fmt, ...);