blob: 819da8ee84dd25d301ac53b111a623d0785138ad [file] [log] [blame]
// RUN: mlir-opt %s -split-input-file -verify-diagnostics
// -----
func.func @module_op() {
// expected-error@+1 {{'builtin.module' op expects region #0 to have 0 or 1 blocks}}
builtin.module {
^bb1:
"test.dummy"() : () -> ()
^bb2:
"test.dummy"() : () -> ()
}
return
}
// -----
func.func @module_op() {
// expected-error@+1 {{region should have no arguments}}
builtin.module {
^bb1(%arg: i32):
}
return
}
// -----
// expected-error@+1 {{can only contain attributes with dialect-prefixed names}}
module attributes {attr} {
}