You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
316 B
9 lines
316 B
// RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s -Wunused-parameter 2>&1 \
|
|
// RUN: | FileCheck %s
|
|
|
|
// No 'unused parameter' warnings should be shown when skipping the function bodies.
|
|
inline int foo(int used, int unused) {
|
|
used = 100;
|
|
}
|
|
// CHECK-NOT: warning: unused parameter
|