forked from OSchip/llvm-project
9 lines
257 B
C
9 lines
257 B
C
|
// RUN: %clang -cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
|
||
|
|
||
|
// Check that TestFramework is treated as a system header.
|
||
|
#include <TestFramework/TestFramework.h>
|
||
|
|
||
|
int f1() {
|
||
|
return test_framework_func(1) + another_test_framework_func(2);
|
||
|
}
|