solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
contract C {
    struct S { uint a; }
    function f() public pure returns(address) {
        S memory s = S(42);
        return s.address;
    }
}
// ----
// TypeError 9582: (129-138): Member "address" not found or not visible after argument-dependent lookup in struct C.S memory.