mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
Test cases are chosen so that addition/removal of explicit type will not interfere with the original purpose of the test
16 lines
224 B
Kotlin
16 lines
224 B
Kotlin
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
|
|
}
|
|
|
|
|