solidity/test/libyul/yulOptimizerTests/fullInliner/recursion.yul
2018-10-17 14:11:20 +02:00

19 lines
197 B
Plaintext

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