[Test] Add test for KT-41952

^KT-41952 Obsolete
This commit is contained in:
Dmitriy Novozhilov
2023-01-24 11:20:35 +02:00
committed by Space Team
parent 4c96495eef
commit a1a9a55e1a
6 changed files with 68 additions and 0 deletions
@@ -0,0 +1,23 @@
// FIR_IDENTICAL
// ISSUE: KT-41952
import kotlin.reflect.KClass
import kotlin.reflect.KProperty
class Issue {
val strings by bidir_collection(String::class) {
takeIssue(it) // Issue? instead of Issue
}
}
fun takeIssue(issue: Issue) {}
fun <Self : Any, Target : Any> Self.bidir_collection(targetType: KClass<out Target>, f: (Self) -> Unit): Delegate<Self, Collection<Target>> = null!!
class Delegate<R, T> {
operator fun getValue(thisRef: R, property: KProperty<*>): T {
return null!!
}
operator fun setValue(thisRef: R, property: KProperty<*>, value: T) {}
}