Files
kotlin-fork/compiler/testData/diagnostics/tests/exposed/privateFromLocal.kt
T

12 lines
198 B
Kotlin
Vendored

interface Your
class My {
// private from local: ???
private val x = object : Your {}
// private from local: ???
private fun foo() = {
class Local
Local()
}()
}