Files
kotlin-fork/idea/testData/inspectionsLocal/collections/simplifiableCallChain/listOfNotNullWithComment.kt.after
T
2020-01-30 15:32:09 +07:00

8 lines
130 B
Plaintext
Vendored

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