Files
kotlin-fork/idea/testData/refactoring/introduceLambdaParameter/suspendCalls.kt
T
2018-06-08 14:34:23 +03:00

6 lines
122 B
Kotlin
Vendored

// WITH_DEFAULT_VALUE: false
suspend fun foo(n: Int) = n
suspend fun test() {
val m = <selection>foo(1)</selection>
}