ec64a7e422
So #KT-16394 Fixed
15 lines
241 B
Kotlin
Vendored
15 lines
241 B
Kotlin
Vendored
class Test {
|
|
fun bar() = 1
|
|
|
|
fun test(x: Int) {
|
|
val foo: () -> Int = when (x) {
|
|
1 -> {
|
|
<caret>this::bar
|
|
}
|
|
else -> {
|
|
this::bar
|
|
}
|
|
}
|
|
}
|
|
}
|