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

6 lines
116 B
Plaintext
Vendored

// WITH_DEFAULT_VALUE: false
suspend fun foo(n: Int) = n
suspend fun test(i: suspend () -> Int) {
val m = i()
}