Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/defaultAccessors/ClassVarWithGet.kt
Pavel V. Talanov 72bdacb074 Add explicit return types to several test data files so that AST access is not needed
Test cases are chosen so that addition/removal of explicit type will not interfere with the original purpose of the test
2014-05-21 15:40:08 +04:00

18 lines
271 B
Kotlin

package test
class ClassVal() {
var property1: Int = 1
get
internal var property2: Int = 1
get
private var property3: Object = Object()
get
protected var property4: String = ""
get
public var property5: Int = 1
get
}