mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
|
object "object" {
|
||
|
code {
|
||
|
let a
|
||
|
let b
|
||
|
{
|
||
|
function z() -> y
|
||
|
{ y := calldataload(0) }
|
||
|
a := z()
|
||
|
}
|
||
|
{
|
||
|
function z() -> y
|
||
|
{ y := calldataload(0x20) }
|
||
|
b := z()
|
||
|
}
|
||
|
sstore(a, b)
|
||
|
}
|
||
|
}
|