blob: 94ea0eb300be17ef7a19e24a41ae8f25feec1c7f [file] [log] [blame]
Zhongxing Xuaba122c2008-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}