solidity/test/libsolidity/semanticTests/variables/delete_local.sol
2022-05-19 20:23:28 +02:00

12 lines
189 B
Solidity

contract test {
function delLocal() public returns (uint res){
uint v = 5;
delete v;
res = v;
}
}
// ====
// compileToEwasm: also
// ----
// delLocal() -> 0