3b9d90429b
Also fix it for the case of a class in a non-default package
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()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|