Add new interfaces
[oota-llvm.git] / test / CFrontend / 2004-02-20-StaticRedeclare.c.tr
1 // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep declare
2
3 int one (int a) {
4   two (a, 5);
5   return 0;
6 }
7
8 static int two (int a, int b) {
9 }