Private setter for open property: is now an error, not a warning

This commit is contained in:
Mikhail Glukhikh
2015-12-11 15:27:30 +03:00
parent 00504a3f6d
commit fe78f944a6
4 changed files with 3 additions and 4 deletions
@@ -6,7 +6,6 @@ open class ClassVarModality() {
final internal var property2: Int = 1
open var property3: Int = 1
private set
final internal var property4: Int = 1
private set
@@ -10,7 +10,7 @@ public open class ClassVarModality {
internal final fun <set-property2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
public open var property3: kotlin.Int
public open fun <get-property3>(): kotlin.Int
private open fun <set-property3>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
public open fun <set-property3>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
internal final var property4: kotlin.Int
internal final fun <get-property4>(): kotlin.Int
private final fun <set-property4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit