Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/classWithCompanionObject.kt
T
2023-02-28 10:19:18 +00:00

10 lines
106 B
Kotlin
Vendored

// FIR_IDENTICAL
class A {
@Deprecated("deprecated") companion object
class B
}
val x1 = A.B()