17 lines
247 B
Kotlin
Vendored
17 lines
247 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
package test
|
|
|
|
class ClassVar() {
|
|
var property1: Int = 1
|
|
|
|
internal var property2: Int = 1
|
|
|
|
private var property3: Object = Object()
|
|
|
|
protected var property4: String = ""
|
|
|
|
public var property5: Int = 1
|
|
}
|
|
|
|
|