mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
13 lines
223 B
Kotlin
Vendored
13 lines
223 B
Kotlin
Vendored
// TRUE
|
|
// SKIP_ANALYZE_CHECK
|
|
|
|
fun test() {<caret>
|
|
|
|
val someThing: Any? = null
|
|
val otherThing: Any? = null
|
|
|
|
if (!(someThing?.equals(otherThing) ?: otherThing == null)) {
|
|
// Some comment
|
|
}
|
|
|
|
// TYPE: } |