Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/defaultAccessors/ClassValWithGet.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

16 lines
635 B
Plaintext

package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final val property1: kotlin.Int = 1
internal final fun <get-property1>(): kotlin.Int
internal final val property2: kotlin.Int = 1
internal final fun <get-property2>(): kotlin.Int
private final val property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
protected final val property4: kotlin.String = ""
protected final fun <get-property4>(): kotlin.String
public final val property5: kotlin.Int = 1
public final fun <get-property5>(): kotlin.Int
}