Kapt: Support default constant values for constructor parameters

This commit is contained in:
Yan Zhulanow
2019-03-15 15:41:39 +03:00
parent 10e53a2e73
commit e4d758b614
7 changed files with 55 additions and 12 deletions
@@ -21,4 +21,6 @@ object Foo {
object Boo {
val z = foo()
fun foo() = "abc"
}
}
class Zoo(val p: Int = 100)