mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
266 B
Plaintext
18 lines
266 B
Plaintext
{
|
|
// This is not joined because a is referenced multiple times
|
|
function f(a) -> x {
|
|
a := mload(2)
|
|
x := add(a, 3)
|
|
}
|
|
}
|
|
// ----
|
|
// step: expressionJoiner
|
|
//
|
|
// {
|
|
// function f(a) -> x
|
|
// {
|
|
// a := mload(2)
|
|
// x := add(a, 3)
|
|
// }
|
|
// }
|