J2K: do not generate super call to abstract property

This commit is contained in:
Natalia Ukhorskaya
2016-04-12 17:14:42 +03:00
parent 72019a1b4e
commit 495be06fc5
9 changed files with 85 additions and 34 deletions
@@ -0,0 +1,12 @@
package test
import kotlinApi.*
class KotlinClassAbstractPropertyImpl : KotlinClassAbstractProperty() {
override var isVisible: Boolean = false
private set
private fun test() {
isVisible = true
}
}