xref: /llvm-project/clang/test/Driver/extract-api-unknown-ignore-diag.h (revision 791fe26d758173e569d26d831b36ee8527e1a766)
1 // RUN: rm -rf %t
2 // RUN: not %clang -target x86_64-unknown-unknown -extract-api --extract-api-ignores=does-not-exist %s 2>&1 | FileCheck %s
3 
4 // CHECK: fatal error: file 'does-not-exist' specified by '--extract-api-ignores=' not found
5 
6 void dummy_function(void);
7