Ilya Biryukov | bf484aa | 2017-12-14 13:00:33 +0000 | [diff] [blame] | 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(); |
Ilya Biryukov | bf484aa | 2017-12-14 13:00:33 +0000 | [diff] [blame] | 8 | // CHECK-NOT: warning: inline function 'with_body' is not defined |
Ilya Biryukov | 33eaf17 | 2017-12-14 14:51:17 +0000 | [diff] [blame] | 9 | // CHECK: warning: inline function 'without_body' is not defined |