More testcases, which I'll implement later
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-05-21-MissingArguments.ll
1 ; RUN: as < %s | opt -funcresolve -disable-output
2
3 void %foo(int, int) {
4   ret void
5 }
6 declare void %foo(...)
7
8 void %test() {
9         call void(...)* %foo(int 7)
10         ret void
11 }