[Test] Add test for KT-54209

This commit is contained in:
Dmitriy Novozhilov
2022-10-17 11:25:52 +03:00
committed by Space Team
parent 64e21af03b
commit 55aae5325c
7 changed files with 65 additions and 0 deletions
@@ -0,0 +1,12 @@
// ISSUE: KT-54209
class A {
@Deprecated("Deprecated companion")
companion object
}
fun test() {
A::class
A.<!DEPRECATION!>Companion<!>::class
}