Files
kotlin-fork/idea/testData/inspectionsLocal/replaceCollectionCountWithSize/countOfCollection.kt.after
T

7 lines
74 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
var list = listOf(1,2,3)
list.size
}