blob: 9378f664bb6f84e78df13243cf923dfbdc7b6d1f [file] [log] [blame]
Ilya Biryukovbf484aa2017-12-14 13:00:33 +00001// 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();
Ilya Biryukovbf484aa2017-12-14 13:00:33 +00008// CHECK-NOT: warning: inline function 'with_body' is not defined
Ilya Biryukov33eaf172017-12-14 14:51:17 +00009// CHECK: warning: inline function 'without_body' is not defined