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

7 lines
132 B
Kotlin
Vendored

// FIR_IDENTICAL
internal open class My
internal class Outer {
// Ok, effectively internal from internal
class Your: My()
}