Files
kotlin-fork/idea/testData/intentions/convertReceiverToParameter/localFun.kt
T
2015-10-14 20:39:35 +03:00

7 lines
113 B
Kotlin
Vendored

fun test() {
fun <caret>String.foo(n: Int): Boolean {
return length - n/2 > 1
}
"1".foo(2)
}