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

11 lines
190 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Your
class My {
internal val x = object : Your {}
internal fun <!EXPOSED_FUNCTION_RETURN_TYPE!>foo<!>() = {
class Local
Local()
}()
}