solidity/test/libyul/yulOptimizerTests/fullInliner/recursion.yul
2019-04-03 14:58:20 +02:00

20 lines
211 B
Plaintext

{
function f(a) {
f(1)
}
f(mload(0))
}
// ====
// step: fullInliner
// ----
// {
// {
// let a_4 := mload(0)
// f(1)
// }
// function f(a)
// {
// f(1)
// }
// }