mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
217 B
Plaintext
15 lines
217 B
Plaintext
// We cannot substitute `a` in `let b := a`
|
|
{
|
|
let a := extcodesize(0)
|
|
a := mul(a, 2)
|
|
let b := a
|
|
}
|
|
// ----
|
|
// step: rematerialiser
|
|
//
|
|
// {
|
|
// let a := extcodesize(0)
|
|
// a := mul(a, 2)
|
|
// let b := a
|
|
// }
|