blob: 366bd7326d310739ebf840f95f37d084919fce7f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: ignore llvm-as < %s -o /dev/null -f |& \
2; RUN: grep {LLVM functions cannot return aggregate types}
3
4define void @test() {
5 call {} @foo()
6 ret void
7}
8
9declare {} @foo()