c344b85d4e
#KT-17615 Fixed #KT-30028 Fixed #KT-32809 Fixed #KT-28085 Fixed #KT-37508 Fixed Convert receiver to parameter: #KT-37508 Fixed
10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
interface I
|
|
interface J
|
|
|
|
fun foo(<caret>a: Any, b: String) {
|
|
b.bar {
|
|
this as J
|
|
}
|
|
}
|
|
|
|
fun String.bar(init: I.() -> Unit) {} |