10 lines · plain
1// RUN: not toyc-ch4 %s -emit=mlir 2>&12 3// The following IR is not "valid":4// - toy.print should not return a value.5// - toy.print should take an argument.6// - There should be a block terminator.7toy.func @main() {8 %0 = "toy.print"() : () -> tensor<2x3xf64>9}10