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

8 lines
121 B
Solidity

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