mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
254 B
Plaintext
18 lines
254 B
Plaintext
{
|
|
let x := 5
|
|
sstore(x, 10)
|
|
pop(create(0, 0, 0))
|
|
sstore(x, 20)
|
|
}
|
|
// ----
|
|
// step: unusedStoreEliminator
|
|
//
|
|
// {
|
|
// {
|
|
// let x := 5
|
|
// sstore(x, 10)
|
|
// pop(create(0, 0, 0))
|
|
// sstore(x, 20)
|
|
// }
|
|
// }
|