solidity/test/libyul/yulOptimizerTests/unusedPruner/movable_user_defined_function.yul

14 lines
165 B
Plaintext
Raw Normal View History

{
function f(x) -> t {
let b := 7
}
function g(x) -> t {
t := x
}
let x := f(g(2))
}
// ----
// step: unusedPruner
//
2021-11-09 12:25:25 +00:00
// { { } }