summaryrefslogtreecommitdiff
path: root/test/Sema/attr-format_arg.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/attr-format_arg.c')
-rw-r--r--test/Sema/attr-format_arg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Sema/attr-format_arg.c b/test/Sema/attr-format_arg.c
new file mode 100644
index 0000000000000..6f953155f8c81
--- /dev/null
+++ b/test/Sema/attr-format_arg.c
@@ -0,0 +1,11 @@
+#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}}
+}