Files
2020-06-03 10:43:37 +03:00

5 lines
67 B
Kotlin
Vendored

fun bar(doIt: Int.() -> Int) {
val i: Int? = 1
i?.doIt()
}