Files
kotlin-fork/idea/testData/smartSelection/beforeComment.kt
T

13 lines
144 B
Kotlin
Vendored

class A {
val list = listOf(1, 2, 3)
}
fun foo(a: A) {
for (x in a.list<caret>/* comment */) {
println(x)
}
}
/*
a.list
*/