solang icon indicating copy to clipboard operation
solang copied to clipboard

Polkadot abi generation overflows its stack

Open LucasSte opened this issue 2 years ago • 0 comments

When compiling this contract, the polkadot ABI generation overflows its stack.

contract hatchling {
    struct A {
        A [][2][1] b;
    }

    A private n1;
    constructor() {}

    function foo(uint a, uint b) public {

    }
}

LucasSte avatar Sep 13 '23 21:09 LucasSte