blob: b07440b97c370dc8d316e7c188f053a9626c7d3d [file] [log] [blame]
// RUN: rm -rf %t
// RUN: split-file %s %t
// 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
// CHECK: error: header file
// CHECK-SAME: input 'objective-c-header' does not match the type of prior input in api extraction; use '-x c-header' to override
//--- first-header.h
void dummy_function(void);
//--- second-header.h
void other_dummy_function(void);