mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
10 lines
310 B
Plaintext
Vendored
10 lines
310 B
Plaintext
Vendored
// PARAM_TYPES: kotlin.Array<T>, kotlin.Cloneable, java.io.Serializable, kotlin.Any
|
|
// 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()
|
|
} |