mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
11 lines
166 B
Kotlin
Vendored
11 lines
166 B
Kotlin
Vendored
fun test11() {
|
|
fun Any.bar(i: Int) {}
|
|
todo().bar(1)
|
|
}
|
|
|
|
fun test12() {
|
|
fun Any.bar(i: Int) {}
|
|
todo()?.bar(1)
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception() |