blob: 53c4432a4d059c72e83dd39d576951827cd95618 [file] [log] [blame]
Daniel Dunbard4270232009-01-20 23:17:32 +00001// RUN: clang -analyze -checker-simple -verify %s
Zhongxing Xuc4988482008-10-22 14:39:20 +00002
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}