Files
kotlin-fork/compiler/testData/diagnostics/tests/fpRedundantProtected.kt
T
Nikolay Lunyak 7f12af9452 [FIR] Ensure KT-66161 is not reproducible in the compiler
^KT-66161


Merge-request: KT-MR-14730
Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
2024-03-07 15:10:18 +00:00

7 lines
90 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-66161
private open class A {
protected fun test() {}
}