1// RUN: mlir-opt %s -convert-func-to-llvm -verify-diagnostics -split-input-file 2 3// Should not crash on unsupported types in function signatures. 4func.func private @unsupported_signature() -> tensor<10 x i32> 5 6// ----- 7 8func.func private @partially_supported_signature() -> (vector<10 x i32>, tensor<10 x i32>) 9 10