solidity/test/libyul/yulOptimizerTests/fullInliner/recursion.yul

15 lines
151 B
Plaintext
Raw Normal View History

2018-01-22 23:06:55 +00:00
{
function f(a) {
f(1)
}
f(mload(0))
}
2019-04-01 14:33:46 +00:00
// ====
// step: fullInliner
2018-01-22 23:06:55 +00:00
// ----
// {
2019-05-22 16:13:04 +00:00
// { f(mload(0)) }
2018-01-22 23:06:55 +00:00
// function f(a)
// { f(1) }
2018-01-22 23:06:55 +00:00
// }