KT-47101: Fix companion supertypes

This commit is contained in:
Nikolay Lunyak
2021-11-15 13:22:38 +00:00
committed by Space
parent 4f52ab6ba1
commit 2fb066e261
8 changed files with 97 additions and 12 deletions
@@ -0,0 +1,8 @@
// FIR_IDENTICAL
open class B
class A {
companion object : B() { // Nested B should be invisible here but it's not
class B
}
}