hyperledger / solang

Solidity Compiler for Solana and Polkadot
https://solang.readthedocs.io/
Apache License 2.0
1.25k stars 208 forks source link

Polkadot abi generation overflows its stack #1520

Open LucasSte opened 11 months ago

LucasSte commented 11 months ago

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 {

    }
}