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