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,11 +2,11 @@ package test
public open class Base {
/*primary*/ public constructor Base()
internal open val int: kotlin.Int = 1
internal open val int: kotlin.Int
internal open fun <get-int>(): kotlin.Int
protected open val prot: kotlin.Int = 1
protected open val prot: kotlin.Int
protected open fun <get-prot>(): kotlin.Int
public open val pub: kotlin.Int = 1
public open val pub: kotlin.Int
public open fun <get-pub>(): kotlin.Int
}