
- Developers of system frameworks need a way for their framework to be treated as a "system framework" during development. Otherwise, they are unable to properly test how their framework behaves when installed because of the semantic changes (in warning behavior) applied to system frameworks. llvm-svn: 154105
9 lines
257 B
C
9 lines
257 B
C
// RUN: %clang -cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
|
|
|
|
// 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);
|
|
}
|