mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
11 lines
260 B
Plaintext
11 lines
260 B
Plaintext
// PARAM_TYPES: kotlin.Array<T>, kotlin.Cloneable, Any
|
|
// PARAM_DESCRIPTOR: internal fun <T> kotlin.Array<T>.test(): kotlin.Unit defined in root package
|
|
// SIBLING:
|
|
fun <T> Array<T>.test() {
|
|
unit()
|
|
}
|
|
|
|
private fun <T> Array<T>.unit() {
|
|
this.isEmpty()
|
|
}
|