Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
Index
/
multiple-redecls.c
blob: ea6d00b6a3c4e1e3c6028031153d0913a86d9aec [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-pch %s -o %t.ast
// RUN: index-test %t.ast -point-at %s:8:4 -print-decls | count 2
// RUN: index-test %t.ast -point-at %s:8:4 -print-defs | count 1
static
void
foo
(
int
x
);
static
void
bar
(
void
)
{
foo
(
10
);
}
void
foo
(
int
x
)
{
}