Files
kotlin/idea/testData/structureView/fileStructure/AnonymousObjectMembers.kt

15 lines
220 B
Kotlin
Vendored

class C {
val f = object : Runnable {
fun run() { }
fun xyzzy() { }
}
fun bar() {
val g = object : Runnable {
fun run() { }
fun xyzzy() { }
}
}
}