1contract Test {
2    function set(uint24[3][4] memory x) public {
3        x[2][2] = 1;
4        x[3][2] = 7;
5    }
6
7    function f() public returns (uint24[3][4] memory) {
8        uint24[3][4] memory data;
9        set(data);
10        return data;
11    }
12}
13// ====
14// compileToEwasm: also
15// compileViaYul: also
16// ----
17// f() -> 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07
18