Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 1 | ; RUN: ignore llvm-as < %s -o /dev/null -f |& \ |
2 | ; RUN: grep {LLVM functions cannot return aggregate types} | ||||
3 | |||||
4 | define void @test() { | ||||
5 | call {} @foo() | ||||
6 | ret void | ||||
7 | } | ||||
8 | |||||
9 | declare {} @foo() |