Clang Project

clang_source_code/test/CodeGen/static-forward-decl-fun.c
1// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3static int staticfun(void);
4int (*staticuse1)(void) = staticfun;
5static int staticfun() {return 1;}
6int (*staticuse2)(void) = staticfun;
7