Files
2021-03-11 13:25:51 +03:00

9 lines
190 B
Kotlin
Vendored

class Foo {
<!UNNECESSARY_LATEINIT!>lateinit<!> var bar: String
constructor(baz: Int) {
// At best, we should have error here despite of lateinit
bar += baz
}
}