Change Signature: Fix TypeInfo comparison
#KT-13437 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class A<T, U>
|
||||
|
||||
interface I {
|
||||
fun <T, U> bar(): A<T, U>
|
||||
}
|
||||
|
||||
class C : I {
|
||||
override fun <V, W> bar() = A<V, W>()
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class A<T, U>
|
||||
|
||||
interface I {
|
||||
fun <T, U> <caret>foo(): A<T, U>
|
||||
}
|
||||
|
||||
class C : I {
|
||||
override fun <V, W> foo() = A<V, W>()
|
||||
}
|
||||
Reference in New Issue
Block a user