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

11 lines
183 B
Kotlin
Vendored

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