aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/scoping/scoping_old.sol
blob: 83f6b60ba0c6865f31140c5c3b48b960b7bccb84 (plain) (blame)
1
2
3
4
5
6
contract test {
    function f() pure public {
        x = 4;
        uint256 x = 2;
    }
}