Kapt: Support type parameters in asMemberOf() (KT-13804)

(cherry picked from commit 0d97d73)
This commit is contained in:
Yan Zhulanow
2016-09-15 22:42:45 +03:00
committed by Yan Zhulanow
parent 415acfbd05
commit e04f834a0e
3 changed files with 36 additions and 8 deletions
@@ -0,0 +1,10 @@
annotation class Anno
@Anno
interface Intf<T>
open class Base<T> : Intf<T> {
fun factory() = Base<CharSequence>()
}
class Impl : Base<String>()