Fix ConstantValue-related testData for loadJava tests

This commit is contained in:
Dmitry Petrov
2018-07-23 17:03:28 +03:00
parent cc1d9e88d5
commit 8f103dd8e5
79 changed files with 255 additions and 179 deletions
@@ -2,19 +2,19 @@
package test
class ClassVal() {
val property1 = 1
val property1 = { 1 }()
get
internal val property2 = 1
internal val property2 = { 1 }()
get
private val property3 = Object()
get
protected val property4: String = ""
protected val property4: String = { "" }()
get
public val property5: Int = 1
public val property5: Int = { 1 }()
get
}