Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
aba122c5b81bdf0c0ad5b3cecc262217989b4284
/
.
/
test
/
Analysis
/
func.c
blob: 94ea0eb300be17ef7a19e24a41ae8f25feec1c7f [
file
] [
log
] [
blame
]
Zhongxing Xu
aba122c
2008-10-22 14:39:20 +0000
[
diff
] [
blame^
]
1
// RUN: clang -checker-simple -verify %s
2
3
void
f
(
void
)
{
4
void
(*
p
)(
void
);
5
p
=
f
;
6
p
=
&
f
;
7
p
();
8
(*
p
)();
9
}