Fix raw FIR building with parenthesized expression as selector
This commit is contained in:
+2
-2
@@ -9,10 +9,10 @@ val B.a: () -> Int get() = { 5 }
|
||||
fun test(a: A, b: B) {
|
||||
val x: Int = b.a()
|
||||
|
||||
b.<!UNRESOLVED_REFERENCE!>(a)()<!>
|
||||
b.(a)()
|
||||
|
||||
with(b) {
|
||||
val y: Int = <!UNRESOLVED_REFERENCE!>a<!>()
|
||||
<!UNRESOLVED_REFERENCE!>(a)()<!>
|
||||
(<!UNRESOLVED_REFERENCE!>a<!>)()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user