aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/user_defined_system_framework.c
blob: 23f24f96fda42e0e76d4393e5513af86347643d5 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang -cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
// expected-no-diagnostics

// 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);
}