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