solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
contract C {
    function () pure returns (uint) x;
    uint constant y = x();
}
// ----
// TypeError 8349: (74-77): Initial value for constant variable has to be compile-time constant.