```python from numba_mlir import njit import numpy as np print(np.array(["hello", "world"])) @njit def foo(a): return a print(foo(np.array(["hello", "world"]))) ``` output: ``` ... ['hello' 'world'] RuntimeError: MLIR pipeline failed ```
output: