mirror of https://github.com/llvm/torch-mlir
16 lines
322 B
MLIR
16 lines
322 B
MLIR
|
// RUN: npcomp-opt <%s -split-input-file -verify-diagnostics
|
||
|
|
||
|
// -----
|
||
|
|
||
|
torch.nn_module {
|
||
|
// expected-error @+1 {{'func' op is not allowed inside `torch.nn_module`}}
|
||
|
func @f()
|
||
|
}
|
||
|
|
||
|
// -----
|
||
|
|
||
|
torch.nn_module {
|
||
|
// expected-error @+1 {{'invalidSym' does not reference a valid function}}
|
||
|
torch.method "f", @invalidSym
|
||
|
}
|