xref: /llvm-project/clang/test/CodeGen/2003-06-29-MultipleFunctionDefinition.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -std=gnu89 -emit-llvm %s  -o /dev/null
2 
3 /* This is apparently legal C.
4  */
test(void)5 extern __inline__ void test(void) { }
6 
test(void)7 void test(void) {
8 }
9