44790eccaf
Unused variables are no more treated as unnecessary Related to KT-15958
8 lines
124 B
Kotlin
Vendored
8 lines
124 B
Kotlin
Vendored
import java.util.HashSet
|
|
|
|
internal class Foo {
|
|
fun foo(o: HashSet<*>) {
|
|
var foo = 0
|
|
foo = o.size
|
|
}
|
|
} |