[FIR] Do not process constructors in super-type scopes

This commit is contained in:
Mikhail Glukhikh
2020-01-29 13:24:14 +03:00
parent b4267558d7
commit e43a57bdee
6 changed files with 16 additions and 17 deletions
@@ -6,6 +6,6 @@ class J extends K {
// FILE: K.kt
class K : <!AMBIGUITY!>J<!>() {
class K : J() {
fun bar() {}
}
@@ -1,6 +1,6 @@
// FILE: I.kt
open class I : <!AMBIGUITY!>K<!>() {
open class I : K() {
fun foo() {}
}
@@ -12,6 +12,6 @@ class J extends I {
// FILE: K.kt
open class K : <!AMBIGUITY!>J<!>() {
open class K : J() {
fun baz() {}
}