mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
23 lines
660 B
Kotlin
23 lines
660 B
Kotlin
// CLASS_NAME_SUFFIX: Deepest
|
|
|
|
fun main() {
|
|
class Local {
|
|
inner class Inner {
|
|
val prop = object {
|
|
fun foo() {
|
|
fun bar() {
|
|
class DeepLocal {
|
|
inner class Deepest {
|
|
fun local(): Local = Local()
|
|
fun inner(): Inner = Inner()
|
|
fun deep(): DeepLocal = DeepLocal()
|
|
fun deepest(): Deepest? = Deepest()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|