mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
236 B
Plaintext
18 lines
236 B
Plaintext
{
|
|
function f() { let x_1 := 0 }
|
|
function g() { let x_2 := 0 }
|
|
}
|
|
// ====
|
|
// step: varNameCleaner
|
|
// ----
|
|
// {
|
|
// function f()
|
|
// {
|
|
// let x := 0
|
|
// }
|
|
// function g()
|
|
// {
|
|
// let x := 0
|
|
// }
|
|
// }
|