[FIR] Hide primary constructor parameters from accessors

This commit is contained in:
simon.ogorodnik
2020-02-11 16:10:00 +03:00
parent a0ed2c8640
commit d9883067e6
3 changed files with 11 additions and 8 deletions
@@ -5,5 +5,5 @@ class Foo(val a: Int, b: Int) {
get() = a
val e: Int
get() = b
get() = <!UNRESOLVED_REFERENCE!>b<!>
}