a84b32af98
#KT-5492 Fixed
13 lines
170 B
Kotlin
13 lines
170 B
Kotlin
public class Test(count: Int) {
|
|
public var count: Int = 0
|
|
private set
|
|
|
|
{
|
|
this.count = count
|
|
}
|
|
|
|
public fun inc() {
|
|
count++
|
|
}
|
|
}
|