• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang -cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
2 
3 // Check that TestFramework is treated as a system header.
4 #include <TestFramework/TestFramework.h>
5 
f1()6 int f1() {
7   return test_framework_func(1) + another_test_framework_func(2);
8 }
9