Argyrios Kyrtzidis | 25893e0 | 2012-10-31 17:29:22 +0000 | [diff] [blame] | 1 | |
| 2 | // This is to make sure we skip function bodies. |
| 3 | void func_to_skip() { |
| 4 | undeclared1 = 0; |
| 5 | } |
| 6 | |
| 7 | struct S { int x; }; |
| 8 | |
| 9 | void func(S *s) { |
| 10 | undeclared2 = 0; |
| 11 | s->x = 0; |
| 12 | } |
| 13 | |
NAKAMURA Takumi | 334111d | 2013-01-17 07:27:55 +0000 | [diff] [blame] | 14 | // RUN: c-index-test -code-completion-at=%s:11:6 %s 2> %t.stderr | FileCheck %s --check-prefix=STDOUT |
| 15 | // RUN: FileCheck --input-file=%t.stderr --check-prefix=STDERR %s |
NAKAMURA Takumi | bef17f9 | 2012-11-01 00:20:00 +0000 | [diff] [blame] | 16 | |
NAKAMURA Takumi | 334111d | 2013-01-17 07:27:55 +0000 | [diff] [blame] | 17 | // STDOUT: FieldDecl:{ResultType int}{TypedText x} |
| 18 | |
| 19 | // STDERR-NOT: error: use of undeclared identifier 'undeclared1' |
| 20 | // STDERR: error: use of undeclared identifier 'undeclared2' |