brintos

brintos / llvm-project-archived public Read only

0
0
Text · 205 B · e030d8e Raw
8 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2 3; CHECK: error: identified structure type 'rt3' is recursive4 5%rt1 = type { i32, { i8, %rt2, i8 }, i32 }6%rt2 = type { i64, { i6, %rt3 } }7%rt3 = type { %rt1 }8