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

8 lines
130 B
Plaintext
Vendored

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