Kapt: Return substituted supertypes in directSupertypes() for immediate class types (KT-13746)

(cherry picked from commit 3aae990)

(cherry picked from commit 198115b)
This commit is contained in:
Yan Zhulanow
2016-09-09 23:52:56 +03:00
committed by Yan Zhulanow
parent 8d2a4c3f91
commit f7f8cff00d
3 changed files with 16 additions and 2 deletions
@@ -7,4 +7,8 @@ annotation class Anno
@Anno
class B : A<String>()
class C<T : CharSequence> : A<T>()
class C<T : CharSequence> : A<T>()
interface I2<X>
open class B2<X>
class A2<T : CharSequence> : B2<T>(), I2<T>