Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt3647.fir.kt
T

10 lines
237 B
Kotlin
Vendored

// KT-3647 Unexpected compilation error: "Expression is inaccessible from a nested class"
class Test(val value: Int) {
companion object {
fun create(init: () -> Int): Test {
return Test(init())
}
}
}