76e067c43a
#KT-12054 Fixed
11 lines
238 B
Kotlin
Vendored
11 lines
238 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
|
|
}
|
|
} |