a0a22b7be6
Also the diagnostic error message reported the wrong nested class name: it should be the nested class in the hierarchy which is static, not the class of the scope where we're checking the accessibility
8 lines
98 B
Kotlin
8 lines
98 B
Kotlin
class A {
|
|
class B {
|
|
val r = object {
|
|
fun bar() = this@A
|
|
}
|
|
}
|
|
}
|