de8c3826c2
^KT-58472 Fixed Review: https://jetbrains.team/p/kt/reviews/9967
14 lines
197 B
Kotlin
Vendored
14 lines
197 B
Kotlin
Vendored
abstract class Base {
|
|
abstract var x: Int
|
|
|
|
abstract var y: Int
|
|
|
|
constructor() {
|
|
x = 42
|
|
this.y = 24
|
|
val temp = this.x
|
|
this.x = y
|
|
y = temp
|
|
}
|
|
}
|