blob: 0f8bab4a06238fdffbc65c3cca3c50a39c7be20a [file] [log] [blame]
Chris Lattner70dd7702005-02-01 01:44:54 +00001; RUN: llvm-as %s -o /dev/null 2>&1 | grep "LLVM functions cannot return aggregate types"
2
3void %test() {
4 call {} %foo()
5 ret void
6}
7
8declare {} %foo()