solidity/test/libyul/yulOptimizerTests/varDeclInitializer/ambiguous.yul
2018-12-13 16:49:04 +01:00

30 lines
451 B
Plaintext

{
// This component does not need the disambiguator
function f() -> x, y {
let a, b
mstore(a, b)
let d
d := 2
}
let a
a := 4
let b := 2
let x, y := f()
}
// ----
// varDeclInitializer
// {
// function f() -> x, y
// {
// let a := 0
// let b := 0
// mstore(a, b)
// let d := 0
// d := 2
// }
// let a := 0
// a := 4
// let b := 2
// let x, y := f()
// }