16 lines
206 B
Kotlin
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
|
|
}
|
|
|
|
|