Files
kotlin-fork/idea/testData/stubs/MembersInLocalObject.kt
T
2014-05-21 16:50:59 +04:00

10 lines
145 B
Kotlin
Vendored

fun f() {
object foo {
fun foo() {
for (a in listOf(1, 2, 3)) {
}
}
val foo: Int = 3
}
}