solidity/test/libsolidity/semanticTests/variables/delete_local.sol
2023-05-11 10:56:55 -05:00

10 lines
157 B
Solidity

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