Kapt: typeElement.asType() should preserve type parameters and propagate it to its supertypes (KT-13865)

(cherry picked from commit 92c9cea)
This commit is contained in:
Yan Zhulanow
2016-09-21 23:26:58 +03:00
committed by Yan Zhulanow
parent a22721fbd8
commit f83e7509b2
10 changed files with 54 additions and 40 deletions
@@ -11,4 +11,7 @@ class C<T : CharSequence> : A<T>()
interface I2<X>
open class B2<X>
class A2<T : CharSequence> : B2<T>(), I2<T>
class A2<T : CharSequence> : B2<T>(), I2<T>
interface I3<T>
class A3<T> : I3<List<T>>