def identity(field[N][N] t) -> field[N][N] { return t; } def main() -> field[1][1] { return identity([[0]; 1]); }