1 ; RUN: not llvm-link -S -o - %p/pr22807.ll %p/Inputs/pr22807-1.ll %p/Inputs/pr22807-2.ll 2>&1 | FileCheck %s
3 ; CHECK: error: identified structure type 'struct.A' is recursive
5 %struct.B = type { %struct.A }
6 %struct.A = type opaque
8 define i32 @baz(%struct.B %BB) {