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

18 lines
236 B
Plaintext
Raw Normal View History

{
function f() { let x_1 := 0 }
function g() { let x_2 := 0 }
}
2019-04-01 14:33:46 +00:00
// ====
// step: varNameCleaner
// ----
// {
// function f()
// {
// let x := 0
// }
// function g()
// {
// let x := 0
// }
// }