Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/defaultAccessors/ClassVar.kt
T
2013-12-17 20:28:59 +04:00

16 lines
206 B
Kotlin

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