mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
173 B
Plaintext
14 lines
173 B
Plaintext
{
|
|
let b := 1
|
|
if b { b := 1 }
|
|
let c := 1
|
|
}
|
|
// ----
|
|
// step: commonSubexpressionEliminator
|
|
//
|
|
// {
|
|
// let b := 1
|
|
// if b { b := b }
|
|
// let c := 1
|
|
// }
|