mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
10 lines
175 B
Kotlin
Vendored
10 lines
175 B
Kotlin
Vendored
fun bar(x: Int): Int = x + 1
|
|
|
|
fun foo() {
|
|
val x: Int? = null
|
|
|
|
bar(x ?: 0)
|
|
if (x != null) bar(x <!USELESS_ELVIS!>?: x<!>)
|
|
bar(<!ARGUMENT_TYPE_MISMATCH!>x<!>)
|
|
}
|