8 lines
139 B
Kotlin
Vendored
8 lines
139 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test() {
|
|
<caret>listOf(
|
|
true, // comment1
|
|
null // comment2
|
|
).filterNotNull().first()
|
|
} |