solidity/test/libsolidity/syntaxTests/scoping/scoping_for_decl_in_body.sol

10 lines
172 B
Solidity
Raw Normal View History

2018-03-15 23:47:12 +00:00
contract test {
function f() pure public {
for (;; y++){
uint y = 3;
}
}
}
// ----
2018-06-15 10:30:28 +00:00
// DeclarationError: (63-64): Undeclared identifier.