solidity/test/libyul/yulOptimizerTests/varNameCleaner/function_scopes.yul

14 lines
195 B
Plaintext
Raw Normal View History

{
function f() { let x_1 := 0 }
function g() { let x_2 := 0 }
}
// ----
// step: varNameCleaner
//
// {
// function f()
// { let x := 0 }
// function g()
// { let x := 0 }
// }