Files
kotlin-fork/compiler/testData/diagnostics/tests/testsWithExplicitApi/noErrorsForMemebersInsideInternalDeclaration.kt
T

23 lines
375 B
Kotlin
Vendored

// FIR_IDENTICAL
// SKIP_TXT
// ISSUE: KT-51758
@PublishedApi
internal class SomeClass {
private val somethingPrivate = "123"
public val somethingPublic = "456"
fun foo() = "789"
}
@PublishedApi
internal class Outer {
class Inner {
private val somethingPrivate = "123"
public val somethingPublic = "456"
fun foo() = "789"
}
}