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