blob: 685e82c55c280c8c37310e69edc12ecbed69caa2 [file] [log] [blame]
// ERROR: Property must be initialized or be abstract
internal class C(x: Any, b: Boolean) {
var x: Any
init {
if (b) {
this.x = x
}
}
}