| 1 | // RUN: %clang_cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s |
|---|---|
| 2 | // expected-no-diagnostics |
| 3 | |
| 4 | // Check that TestFramework is treated as a system header. |
| 5 | #include <TestFramework/TestFramework.h> |
| 6 | |
| 7 | int f1() { |
| 8 | return test_framework_func(1) + another_test_framework_func(2); |
| 9 | } |
| 10 |