8befbc6375
This is a temporary fix to avoid crashes in FIR IDE Of all stub types, only `ConeStubTypeForChainInference` is handled now, so we can catch the other possible errors with stub types (in the delegates' inference, for example) The fix introduced in this commit should be reworked when KT-50916 is fixed ^KTIJ-20826 Fixed
15 lines
272 B
Kotlin
Vendored
15 lines
272 B
Kotlin
Vendored
// WITH_STDLIB
|
|
package test
|
|
|
|
class Target<T> {
|
|
fun add(t: T) {}
|
|
}
|
|
|
|
fun <T> buildTarget(@BuilderInference block: Target<T>.() -> Unit): Target<T> {
|
|
return Target<T>().apply { block() }
|
|
}
|
|
|
|
fun test(s: String) {
|
|
val result = buildTarget { <expr>add</expr>(s) }
|
|
}
|