blob: 4549300e7bc7dc8a894e7ec0955982dba19c491e [file] [log] [blame]
// 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) {
}