aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2004-02-20-StaticRedeclare.c.tr
blob: 4549300e7bc7dc8a894e7ec0955982dba19c491e (plain)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep declare

int one (int a) {
  two (a, 5);
  return 0;
}

static int two (int a, int b) {
}