mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
286 B
Solidity
16 lines
286 B
Solidity
contract test {
|
|
function delLocal() public returns (uint res1, uint res2){
|
|
uint v = 5;
|
|
uint w = 6;
|
|
uint x = 7;
|
|
delete v;
|
|
res1 = w;
|
|
res2 = x;
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// delLocal() -> 6, 7
|