[RISCV][FMV] Support target_clones (#85786)
[llvm-project.git] / clang / test / Driver / extract-api-multiheader-kind-diag.h
blobb07440b97c370dc8d316e7c188f053a9626c7d3d
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: not %clang -target x86_64-unknown-unknown -extract-api %t/first-header.h -x objective-c-header %t/second-header.h 2>&1 | FileCheck %s
5 // CHECK: error: header file
6 // CHECK-SAME: input 'objective-c-header' does not match the type of prior input in api extraction; use '-x c-header' to override
8 //--- first-header.h
10 void dummy_function(void);
12 //--- second-header.h
14 void other_dummy_function(void);