brintos

brintos / llvm-project-archived public Read only

0
0
Text · 448 B · 5e906c5 Raw
12 lines · plain
1// RUN: mlir-opt %s --verify-diagnostics2 3// The only thing we check here is that it should fail to parse. The other4// check is in the preload test.5 6module attributes {transform.with_named_sequence} {7  transform.named_sequence private @private_helper(%arg0: !transform.any_op {transform.readonly}) {8    // expected-error @below {{expected ','}}9    transform.debug.emit_remark_at %arg0 "should have ',' prior to this" : !transform.any_op10  }11}12