You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
d8bb236e18
llvm-svn: 166681
10 lines
283 B
C
10 lines
283 B
C
// 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);
|
|
}
|