Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/annotations/kt55286.kt
T
2022-12-12 17:27:19 +01:00

15 lines
234 B
Kotlin
Vendored

// FIR_DISABLE_LAZY_RESOLVE_CHECKS
// ISSUE: KT-55286
annotation class Deprecated<T>
open class Base(
@Deprecated<Nested> val a: String,
) {
class Nested
}
class Derived(
@Deprecated<Nested> val b: String,
) : Base("")