1d33a9dccSMehdi Amini// RUN: not toyc-ch4 %s -emit=mlir 2>&1 2d33a9dccSMehdi Amini 33940b90dSSana Damani// The following IR is not "valid": 4d33a9dccSMehdi Amini// - toy.print should not return a value. 5d33a9dccSMehdi Amini// - toy.print should take an argument. 6d33a9dccSMehdi Amini// - There should be a block terminator. 7*ee2c6cd9SRiver Riddletoy.func @main() { 83940b90dSSana Damani %0 = "toy.print"() : () -> tensor<2x3xf64> 9d33a9dccSMehdi Amini} 10