brintos

brintos / llvm-project-archived public Read only

0
0
Text · 350 B · 9378f66 Raw
10 lines · cpp
1// RUN: env CINDEXTEST_SKIP_FUNCTION_BODIES=1 c-index-test -test-load-source all %s 2>&1 \2// RUN: | FileCheck %s3 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 defined9// CHECK: warning: inline function 'without_body' is not defined10