solidity/test/libyul/functionSideEffects/doubly_recursive_function.yul
2020-08-18 14:53:59 +02:00

9 lines
233 B
Plaintext

{
function a() { b() }
function b() { a() }
}
// ----
// : movable, movable apart from effects, can be removed, can be removed if no msize
// a: movable apart from effects, can loop
// b: movable apart from effects, can loop