2018-09-04 09:48:58 +00:00
|
|
|
pragma solidity >0.4.24;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint x) public pure {
|
|
|
|
for (uint i = 0; i < x; ++i)
|
|
|
|
uint y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// SyntaxError 9079: (107-113): Variable declarations can only be used inside blocks.
|