1; RUN: llvm-as %s -o /dev/null
2
3define void @test() {
4	call {i32} @foo()
5	ret void
6}
7
8declare {i32 } @foo()
9