KT-35550 Generate type parameters for delegating property accessors

This commit is contained in:
Dmitry Petrov
2019-12-20 12:59:57 +03:00
parent 4efab51751
commit fefdce0406
7 changed files with 161 additions and 21 deletions
+6
View File
@@ -0,0 +1,6 @@
interface I {
val <T> T.id: T
get() = this
}
class A(i: I) : I by i