Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/classHeader/companionNestedVsOuter.kt
T
2021-11-15 13:22:38 +00:00

9 lines
144 B
Kotlin
Vendored

// FIR_IDENTICAL
open class B
class A {
companion object : B() { // Nested B should be invisible here but it's not
class B
}
}