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

17 lines
222 B
Plaintext
Raw Normal View History

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