brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · e33ee62 Raw
7 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o %t2 3static int staticfun(void);4int (*staticuse1)(void) = staticfun;5static int staticfun() {return 1;}6int (*staticuse2)(void) = staticfun;7