Extract function: add default name for parameter

This commit is contained in:
Natalia Ukhorskaya
2014-12-23 16:43:11 +03:00
parent 87ab271f58
commit a894979c81
4 changed files with 23 additions and 1 deletions
@@ -0,0 +1,6 @@
// 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() {
<selection>this.isEmpty()</selection>
}