1 // RUN: %llvmgcc -c -emit-llvm %s -o - | \
2 // RUN: opt -std-compile-opts | llvm-dis | not grep {declare i32.*func}
4 // There should not be an unresolved reference to func here. Believe it or not,
5 // the "expected result" is a function named 'func' which is internal and
6 // referenced by bar().
15 static int func(char** A
, char ** B
) {}