Kapt: Fix type arguments in JeDeclaredType. In case of type variable, JeTypeVariableType should be returned

(cherry picked from commit ed34ec0)
This commit is contained in:
Yan Zhulanow
2016-08-24 01:27:06 +03:00
committed by Yan Zhulanow
parent ebcc762ae9
commit 7810678389
3 changed files with 48 additions and 3 deletions
@@ -0,0 +1,8 @@
interface I<T>
abstract class A<T> : I<T>
@Deprecated("")
class B : A<String>()
class C<T : CharSequence> : A<T>()