76e067c43a
#KT-12054 Fixed
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
import java.util.HashSet
|
|
|
|
internal class Foo {
|
|
fun foo(o: HashSet<*>) {
|
|
val o2 = o
|
|
var foo = 0
|
|
foo = o2.size
|
|
}
|
|
} |