solidity/test/libsolidity/syntaxTests/variableDeclaration/do_while.sol

13 lines
203 B
Solidity
Raw Normal View History

2018-09-04 09:48:58 +00:00
pragma solidity >0.4.24;
contract C
{
function f(uint x) public pure {
do
uint y;
while (x > 0);
}
}
// ----
// SyntaxError 9079: (81-87): Variable declarations can only be used inside blocks.