solidity/test/libyul/yulOptimizerTests/varDeclPropagator/use_doesnt_rewrite.yul

17 lines
164 B
Plaintext
Raw Normal View History

{
function f(x) {}
let a
f(a)
a := 4
}
// ----
// varDeclPropagator
// {
// function f(x)
// {
// }
// let a
// f(a)
// a := 4
// }