]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/Preprocessor/user_defined_system_framework.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / Preprocessor / user_defined_system_framework.c
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
6 int f1() {
7 return test_framework_func(1) + another_test_framework_func(2);
8 }