blob: a14dc28cee577fc48dafb40d61cbeb9165007ae0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
let a
let b
function f() -> x, y { }
a, b := f()
}
// ----
// unusedPruner
// {
// let a
// let b
// function f() -> x, y
// {
// }
// a, b := f()
// }
|