10 lines
175 B
Kotlin
10 lines
175 B
Kotlin
// ERROR: Property must be initialized or be abstract
|
|
class C(x: Any, b: Boolean) {
|
|
public var x: Any
|
|
|
|
init {
|
|
if (b) {
|
|
this.x = x
|
|
}
|
|
}
|
|
} |