solidity/test/libsolidity/syntaxTests/scoping/scoping_for.sol
2018-06-20 12:53:38 +02:00

8 lines
124 B
Solidity

contract test {
function f() pure public {
for (uint x = 0; x < 10; x ++){
x = 2;
}
}
}