mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
336 B
Plaintext
26 lines
336 B
Plaintext
{
|
|
function f() -> x, y {
|
|
let a, b
|
|
mstore(a, b)
|
|
let d
|
|
d := 2
|
|
}
|
|
let r
|
|
r := 4
|
|
}
|
|
// ----
|
|
// step: varDeclInitializer
|
|
//
|
|
// {
|
|
// function f() -> x, y
|
|
// {
|
|
// let a := 0
|
|
// let b := 0
|
|
// mstore(a, b)
|
|
// let d := 0
|
|
// d := 2
|
|
// }
|
|
// let r := 0
|
|
// r := 4
|
|
// }
|