FIR: allow diagnostic collection on default property accessors

This commit is contained in:
Mikhail Glukhikh
2021-10-06 16:00:35 +03:00
committed by teamcityserver
parent 39fe457f91
commit 2a9a1dbb86
15 changed files with 37 additions and 142 deletions
@@ -5,12 +5,12 @@ abstract class A {
class C1 : A() {
<!REDUNDANT_VISIBILITY_MODIFIER!>public<!> override var attribute = super.attribute
public set
<!REDUNDANT_VISIBILITY_MODIFIER!>public<!> set
}
abstract class B2 : A() {
override var attribute = "b"
public set
<!REDUNDANT_VISIBILITY_MODIFIER!>public<!> set
}
class C2 : B2() {