Generate @JvmDefault for property accessors in LIGHT_CLASS MODE

This commit is contained in:
Mikhael Bogdanov
2018-05-22 11:07:26 +02:00
parent 402ceefe60
commit f826a253e3
2 changed files with 19 additions and 6 deletions
@@ -6,9 +6,12 @@ interface KotlinInterface {
}
// @JvmDefault
// val foo: String
// get() = "123"
@JvmDefault
var foo: String
get() = "123"
set(field) {
}
}