new testcase
[oota-llvm.git] / test / Verifier / 2002-04-13-RetTypes.ll
1 ; RUN: not llvm-as -f %s -o /dev/null
2
3 ; Verify the the operand type of the ret instructions in a function match the
4 ; delcared return type of the function they live in.
5 ;
6 implementation
7
8 uint "testfunc"()
9 begin
10         ret int* null
11 end