blob: ea6d00b6a3c4e1e3c6028031153d0913a86d9aec [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -emit-pch %s -o %t.ast
2// RUN: index-test %t.ast -point-at %s:8:4 -print-decls | count 2
Argyrios Kyrtzidisc7377632009-07-14 03:20:31 +00003// RUN: index-test %t.ast -point-at %s:8:4 -print-defs | count 1
4
5static void foo(int x);
6
7static void bar(void) {
8 foo(10);
9}
10
11void foo(int x) {
12}