1 // RUN: %clang_dfsan %s -o %t
2 // RUN: not %run %t 2>&1 | FileCheck %s
7 int do_nothing(const char *format
, ...) {
11 int main(int argc
, char **argv
) {
12 int (*fp
)(const char *, ...);
19 // CHECK: FATAL: DataFlowSanitizer: unsupported indirect call to vararg function printf
20 fp("hello %s\n", "world");