blob: 49824c3ca65470617075aa456c351a5f098f80a5 [file] [log] [blame]
Zhongxing Xuc4988482008-10-22 14:39:20 +00001// RUN: clang -checker-simple -verify %s
2
3void f(void) {
4 void (*p)(void);
5 p = f;
6 p = &f;
7 p();
8 (*p)();
9}
Zhongxing Xu92429dd2008-10-27 09:21:27 +000010
11void g(void (*fp)(void));
12
13void f2() {
14 g(f);
15}