mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
192 B
Plaintext
17 lines
192 B
Plaintext
{
|
|
let a, b
|
|
function f() -> x { }
|
|
a := f()
|
|
b := 1
|
|
}
|
|
// ----
|
|
// step: unusedPruner
|
|
//
|
|
// {
|
|
// let a, b
|
|
// function f() -> x
|
|
// { }
|
|
// a := f()
|
|
// b := 1
|
|
// }
|