Files
kotlin-fork/idea/testData/inspectionsLocal/collections/simplifiableCallChain/listOfNotNullWithComment.kt
T
2018-09-07 17:26:15 +03:00

8 lines
139 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
<caret>listOf(
true, // comment1
null // comment2
).filterNotNull().first()
}