5f8b5efd66
It is a rather heavy operation and it increases conversion time Related to #KT-31848
12 lines
235 B
Kotlin
Vendored
12 lines
235 B
Kotlin
Vendored
// !forceNotNullTypes: false
|
|
// !specifyLocalVariableTypeByDefault: true
|
|
|
|
import java.util.HashSet
|
|
|
|
internal class Foo {
|
|
fun foo(o: HashSet<*>) {
|
|
val o2: HashSet<*> = o
|
|
var foo: Int = 0
|
|
foo = o2.size
|
|
}
|
|
} |