10 lines · c
1// RUN: %clang_cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s2// expected-no-diagnostics3 4// Check that TestFramework is treated as a system header.5#include <TestFramework/TestFramework.h>6 7int f1(void) {8 return test_framework_func(1) + another_test_framework_func(2);9}10