[FIR] Resolve where subjects to corresponding type argument
^KTIJ-25295 fixed Merge-request: KT-MR-10044 Merged-by: Egor Kulikov <Egor.Kulikov@jetbrains.com>
This commit is contained in:
+3
@@ -14,3 +14,6 @@ class SomeList : AbstractList<Int>() {
|
||||
|
||||
override fun concat(other: List<Int>): List<Int> = this
|
||||
}
|
||||
|
||||
fun <From, To> copyNotNull(from: List<From>, to: List<To>) where From : To, To : Any {
|
||||
}
|
||||
|
||||
Vendored
+1
@@ -23,3 +23,4 @@ FILE: typeParameters.kt
|
||||
public? open? override fun concat(other: List<Int>): List<Int> { LAZY_BLOCK }
|
||||
|
||||
}
|
||||
public? final? fun <From : To, To : Any> copyNotNull(from: List<From>, to: List<To>): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
|
||||
+2
@@ -27,3 +27,5 @@ FILE: typeParameters.kt
|
||||
}
|
||||
|
||||
}
|
||||
public? final? fun <From : To, To : Any> copyNotNull(from: List<From>, to: List<To>): R|kotlin/Unit| {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user