mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
153 B
Kotlin
Vendored
8 lines
153 B
Kotlin
Vendored
fun bar(doIt: Int.() -> Int) {
|
|
1.doIt()
|
|
1<!UNNECESSARY_SAFE_CALL!>?.<!>doIt()
|
|
val i: Int? = 1
|
|
i<!UNSAFE_CALL!>.<!>doIt()
|
|
i?.doIt()
|
|
}
|