aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/434_pure_statement_check_for_regular_for_loop.sol
blob: 319e42029eca42334c0d45c94a37c9ec40f87c5d (plain) (tree)
1
2
3
4
5
6





                                   
contract C {
    function f() pure public {
        for (uint x = 0; true; x++)
        {}
    }
}