7 lines
111 B
Kotlin
Vendored
7 lines
111 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
class Array<E>(e: E) {
|
|
val k = Array(1) {
|
|
1 as Any
|
|
e as Any?
|
|
}
|
|
} |