brintos

brintos / llvm-project-archived public Read only

0
0
Text · 316 B · fc1ebc8 Raw
9 lines · cpp
1// RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s -Wunused-parameter 2>&1 \2// RUN: | FileCheck %s3 4// No 'unused parameter' warnings should be shown when skipping the function bodies.5inline int foo(int used, int unused) {6    used = 100;7}8// CHECK-NOT: warning: unused parameter9