solidity/test/libsolidity/syntaxTests/scoping/scoping_for.sol
2021-04-20 17:38:29 +02:00

9 lines
132 B
Solidity

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