mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
253 B
Plaintext
17 lines
253 B
Plaintext
{
|
|
// This is not joined because a is referenced multiple times
|
|
let a := mload(2)
|
|
let b := mload(a)
|
|
a := 4
|
|
}
|
|
// ----
|
|
// step: expressionJoiner
|
|
//
|
|
// {
|
|
// {
|
|
// let a := mload(2)
|
|
// let b := mload(a)
|
|
// a := 4
|
|
// }
|
|
// }
|