Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/if4.kt
T
2017-10-06 16:20:45 +03:00

7 lines
153 B
Kotlin
Vendored

class Test {
fun bar(a: String) = 1
fun test(x: Int) {
val foo: (a: String) -> Int = if (x == 1) this::bar else <caret>this::bar
}
}