xref: /llvm-project/llvm/test/Linker/Inputs/type-unique-unrelated3.ll (revision f2e868c566107eb2f54e3e6033199297ba11e2d9)
1%t = type { ptr }
2declare %t @f()
3
4define %t @g() {
5 %x = call %t @f()
6 ret %t %x
7}
8