Change Signature: Fix TypeInfo comparison

#KT-13437 Fixed
This commit is contained in:
Alexey Sedunov
2017-04-21 20:46:32 +03:00
parent 8bbf8e185a
commit f70bac019a
5 changed files with 39 additions and 5 deletions
@@ -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>()
}