xref: /llvm-project/clang/test/Preprocessor/user_defined_system_framework.c (revision 0dd49a5628bbe01cecf6516017da59ae44863ab3)
1 // RUN: %clang_cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
2 // expected-no-diagnostics
3 
4 // Check that TestFramework is treated as a system header.
5 #include <TestFramework/TestFramework.h>
6 
f1(void)7 int f1(void) {
8   return test_framework_func(1) + another_test_framework_func(2);
9 }
10