git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42091 91177308-0d34-0410...
[oota-llvm.git] / test / Assembler / 2002-07-14-OpaqueType.llx
1 ; Test that opaque types are preserved correctly
2 ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as | llvm-dis
3 ;
4
5 %Ty = type opaque
6
7 implementation
8
9 %Ty* %func() {
10         ret %Ty* null
11 }
12