Files
kotlin/idea/testData/codeInsight/breadcrumbs/Declarations.kt
Valentin Kipyatkov fcce1e3838 KT-12852 Support breadcrumbs for Kotlin
#KT-12852 Fixed
2016-09-13 17:46:16 +03:00

18 lines
519 B
Kotlin
Vendored

class Outer {
companion object {
class SomeClass : java.io.Serializable {
companion object CompanionName {
private object SomeObject {
fun String.someFun(p: Int, b: Boolean): String {
fun localFun() {
val v = doIt(fun (x: Int, y: Char) {
<caret>
})
}
}
}
}
}
}
}