[FIR] Don't report EXPOSED_FUNCTION_RETURN_TYPE on property accessors

This commit is contained in:
Dmitriy Novozhilov
2021-06-30 15:09:42 +03:00
committed by TeamCityServer
parent 3a34a2ca62
commit f7c68afb18
7 changed files with 69 additions and 1 deletions
@@ -0,0 +1,13 @@
// FIR_IDENTICAL
abstract class A
internal class B : A()
abstract class Base {
protected abstract val a: A
}
internal class Derived : Base() {
override val a = B()
get() = field
}