static-forward-decl-fun.c 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // RUN: %clang_cc1 %s -emit-llvm -o %t static int staticfun(void); int (*staticuse1)(void) = staticfun; static int staticfun() {return 1;} int (*staticuse2)(void) = staticfun;