[FIR] Fix failing Space build
Build failure was introduced by `9b786d35`, where I forgot that typealiases exist. ^KT-64891 ^KT-65336 Fixed Merge-request: KT-MR-14087 Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
a593936b8a
commit
47a51f6499
+7
-1
@@ -3,4 +3,10 @@
|
||||
|
||||
fun test(f: (Int) -> Int) {
|
||||
<!NO_RECEIVER_ALLOWED!>2.(f)()<!>
|
||||
}
|
||||
}
|
||||
|
||||
typealias TA = Int.() -> Int
|
||||
|
||||
fun rest(f: TA) {
|
||||
2.(f)()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user