aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/local_const_variable.sol
blob: 5567316019a281fedfccfa10b876a69838a49309 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract Foo {
    function localConst() returns (uint ret)
    {
        uint constant local = 4;
        return local;
    }
}
// ----
// ParserError: (67-67): Expected token Semicolon got 'Constant'