Clang Project

clang_source_code/test/Index/skipped-function-bodies.cpp
1// RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s 2>&1 \
2// RUN: | FileCheck %s
3
4inline int with_body() { return 10; }
5inline int without_body();
6
7int x = with_body() + without_body();
8// CHECK-NOT: warning: inline function 'with_body' is not defined
9// CHECK: warning: inline function 'without_body' is not defined
10