NEw testcase
[oota-llvm.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
1 ; It looks like the assembler is not forward resolving the function declaraion
2 ; correctly.
3
4 void "test"()
5 begin
6         call void %foo()
7         ret void
8 end
9
10 declare void "foo"()
11