1 | // RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s 2>&1 \ |
---|---|
2 | // RUN: | FileCheck %s |
3 | |
4 | inline int with_body() { return 10; } |
5 | inline int without_body(); |
6 | |
7 | int 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 |