mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
498 B
Plaintext
30 lines
498 B
Plaintext
|
{
|
||
|
let j, k, l := f(1, 2, 3)
|
||
|
sstore(0, j)
|
||
|
sstore(1, k)
|
||
|
sstore(1, l)
|
||
|
function f(a, b, c) -> x, y, z
|
||
|
{
|
||
|
x, y, z := f(1, 2, 3)
|
||
|
x := add(x, 1)
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// step: fullSuite
|
||
|
//
|
||
|
// {
|
||
|
// {
|
||
|
// let x, y, z := f()
|
||
|
// sstore(0, x)
|
||
|
// sstore(1, y)
|
||
|
// sstore(1, z)
|
||
|
// }
|
||
|
// function f() -> x, y, z
|
||
|
// {
|
||
|
// let x_1, y_1, z_1 := f()
|
||
|
// y := y_1
|
||
|
// z := z_1
|
||
|
// x := add(x_1, 1)
|
||
|
// }
|
||
|
// }
|