FIR: Run callable references resolution for synthetic-select calls

This commit is contained in:
Denis Zharkov
2020-02-11 13:16:27 +03:00
parent 003aea2e68
commit 5a2cdfcab4
15 changed files with 82 additions and 45 deletions
@@ -18,8 +18,8 @@ class Foo(val a: String, val b: String)
fun test2() {
val prop : Foo.() -> String = if (true) {
<!UNRESOLVED_REFERENCE!>Foo::a<!>
Foo::a
} else {
<!UNRESOLVED_REFERENCE!>Foo::b<!>
Foo::b
}
}