blob: e6aa4580bf3fdb488f71d3d58c824440b5d07384 [file] [log] [blame]
Argyrios Kyrtzidis3a6c8142012-10-31 17:29:22 +00001
2// This is to make sure we skip function bodies.
3void func_to_skip() {
4 undeclared1 = 0;
5}
6
7struct S { int x; };
8
9void func(S *s) {
10 undeclared2 = 0;
11 s->x = 0;
12}
13
14// RUN: c-index-test -code-completion-at=%s:11:6 %s 2>&1 | FileCheck %s
15// CHECK-NOT: error: use of undeclared identifier 'undeclared1'
16// CHECK: error: use of undeclared identifier 'undeclared2'
17// CHECK: FieldDecl:{ResultType int}{TypedText x}