[FIR] Implement delegate inference

This commit is contained in:
Dmitriy Novozhilov
2020-02-26 11:02:32 +03:00
parent 1003b81c93
commit 985311d9f0
19 changed files with 673 additions and 60 deletions
@@ -8,5 +8,5 @@ class My {
val another: String = delegate
var delegateWithBackingField: String by kotlin.properties.Delegates.notNull()
private set(arg) { field = arg }
private set(arg) { <!UNRESOLVED_REFERENCE!>field<!> = arg }
}