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

13 lines
243 B
Kotlin
Vendored

// KT-14469: SOE during effective visibility evaluation
abstract class Base(private val v: String)
fun bar(arg: String) = arg
class Derived : Base("123") {
private inline fun foo() {
bar(<!INAPPLICABLE_CANDIDATE!>v<!>)
}
}