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