55a4c40970
^KT-38444 In Progress
8 lines
136 B
Kotlin
Vendored
8 lines
136 B
Kotlin
Vendored
fun bar(doIt: Int.() -> Int) {
|
|
1.doIt()
|
|
1?.doIt()
|
|
val i: Int? = 1
|
|
i.<!INAPPLICABLE_CANDIDATE!>doIt<!>()
|
|
i?.doIt()
|
|
}
|