mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
Use the same approach that is used for creating function type classes
(Function{0,1,...}) + add Cloneable to supertypes of Array and primitive arrays
#KT-5537 Fixed
7 lines
262 B
Kotlin
Vendored
7 lines
262 B
Kotlin
Vendored
// PARAM_TYPES: kotlin.Array<T>, kotlin.Any, kotlin.Cloneable, java.io.Serializable
|
|
// PARAM_DESCRIPTOR: public fun <T> kotlin.Array<T>.test(): kotlin.Unit defined in root package
|
|
// SIBLING:
|
|
fun <T> Array<T>.test() {
|
|
<selection>this.isEmpty()</selection>
|
|
}
|