[opaque pointer type] Add textual IR support for explicit type parameter to the call...
[oota-llvm.git] / test / Verifier / 2008-01-11-VarargAttrs.ll
1 ; RUN: not llvm-as < %s >& /dev/null
2
3         %struct = type {  }
4
5 declare void @foo(...)
6
7 define void @bar() {
8         call void (...) @foo(%struct* sret null )
9         ret void
10 }