[FIR] Remove the redundant backing field check

This commit fixes a failing visibility check
(FirSymbolByPsiTestGenerated.testBackingField) for the backing field.

Merge-request: KT-MR-6389
Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
This commit is contained in:
Nikolay Lunyak
2022-06-02 08:36:14 +00:00
committed by Space
parent 461d91a10e
commit 98c7399a35
9 changed files with 123 additions and 12 deletions
@@ -0,0 +1,6 @@
var p: Int
field = "test"
get() = field.length
set(value) {
field = value.toString()
}