aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/scoping/scoping_for3.sol
blob: 81e34562cad0bd81391009f65c16eae2764f867d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract test {
    function f() pure public {
        for (uint x = 0; x < 10; x ++){
            x = 2;
        }
        x = 4;
    }
}
// ----
// DeclarationError: (124-125): Undeclared identifier.