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

13 lines
215 B
Kotlin
Vendored

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