b54d595c5f741762d31707c666d0b1c913117502
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-05-21-MissingArguments.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | 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 }