[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / skipped-bodies-unused.cpp
blobfc1ebc8efd8317dfa14cab154b72ff063d03ade4
1 // RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s -Wunused-parameter 2>&1 \
2 // RUN: | FileCheck %s
4 // No 'unused parameter' warnings should be shown when skipping the function bodies.
5 inline int foo(int used, int unused) {
6 used = 100;
8 // CHECK-NOT: warning: unused parameter