mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
25 lines
674 B
Kotlin
Vendored
25 lines
674 B
Kotlin
Vendored
package test
|
|
|
|
// 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()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|