blob: 636c8fb0d7fac65b9fdeff4584560a145a9eb497 [file] [log] [blame]
Eli Friedman109603d2008-05-30 11:13:18 +00001// RUN: clang %s -emit-llvm
2
3static int staticfun(void);
4int (*staticuse1)(void) = staticfun;
5static int staticfun() {return 1;}
6int (*staticuse2)(void) = staticfun;