mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
395 B
Plaintext
19 lines
395 B
Plaintext
{
|
|
function f(a, r) -> x { x := g(a, g(r, r)) }
|
|
function g(b, s) -> y { y := f(b, f(s, s)) }
|
|
let y := g(calldatasize(), 7)
|
|
}
|
|
// ----
|
|
// expressionInliner
|
|
// {
|
|
// function f(a, r) -> x
|
|
// {
|
|
// x := g(a, f(r, f(r, r)))
|
|
// }
|
|
// function g(b, s) -> y
|
|
// {
|
|
// y := f(b, g(s, f(s, f(s, s))))
|
|
// }
|
|
// let y_1 := f(calldatasize(), g(7, f(7, f(7, 7))))
|
|
// }
|