aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2004-02-20-StaticRedeclare.c.tr
blob: e409facdcbb9b537991a7a8ea7120e0c2fbb7d29 (plain)
1
2
3
4
5
6
7
8
9
10
// XFAIL: *
// 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) {
}