[FIR] Don't set up expected type for function body
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
Failures detected in FirBodyResolveTransformerAdapter, file: /kt36044.fir.kt
|
||||
Cause: java.lang.RuntimeException: While resolving call R?C|/select|(Char(a), R?C|/map|(<L> = map@fun <anonymous>(): <ERROR TYPE REF: No type for block> {
|
||||
^ map@fun <implicit>.<anonymous>(): <implicit> {
|
||||
String()
|
||||
}
|
||||
|
||||
}
|
||||
))
|
||||
@@ -1,9 +0,0 @@
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// Issue: KT-36044
|
||||
|
||||
fun <A> select(x: A, f: () -> A) = f()
|
||||
fun <B> map(f: () -> B) = f()
|
||||
|
||||
fun main() {
|
||||
select('a', map { { "" } })
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// Issue: KT-36044
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -8,5 +8,5 @@ fun test2(f: ((String) -> Int)?) {
|
||||
val a0: ((Int) -> Int)? = select2({ it -> it }, null)
|
||||
val b0: ((Nothing) -> Unit)? = select2({ it -> it }, null)
|
||||
|
||||
select3({ <!UNRESOLVED_REFERENCE!>it<!>.<!UNRESOLVED_REFERENCE!>length<!> }, f, null)
|
||||
select3({ it.length }, f, null)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user