xref: /aosp_15_r20/external/llvm/test/Verifier/2008-01-11-VarargAttrs.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: not llvm-as < %s >& /dev/null
2
3	%struct = type {  }
4
5declare void @foo(...)
6
7define void @bar() {
8	call void (...) @foo(%struct* sret null )
9	ret void
10}
11