Files
kotlin/idea/testData/refactoring/extractFunction/basic/extensionFunForArray.kt.after
Alexander Udalov 035d6156a7 Drop Cloneable in JS, synthesize it at compile-time on JVM
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
2016-10-25 15:42:33 +03:00

11 lines
311 B
Plaintext
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() {
__dummyTestFun__()
}
private fun <T> Array<T>.__dummyTestFun__() {
this.isEmpty()
}