Add UL-inline class overrided interface methods

This commit is contained in:
Igor Yakovlev
2019-06-07 16:42:21 +03:00
parent 7d542eda00
commit 545fdb5a37
3 changed files with 53 additions and 12 deletions
@@ -18,3 +18,11 @@ inline class InlinedDelegate<T>(var node: T) {
return node
}
}
inline class InlineInheritance(val v: Int) : I {
override fun y() = 4
override val x get() = 5
fun z() = 7
}