blob: 6f1f75b02f39a48fd26dda9d9db12208546fe580 [file] [log] [blame]
Argyrios Kyrtzidisc7377632009-07-14 03:20:31 +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 &&
3// 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}