7 lines
77 B
Kotlin
Vendored
7 lines
77 B
Kotlin
Vendored
class Foo {
|
|
lateinit var bar: String
|
|
|
|
init {
|
|
bar = ""
|
|
}
|
|
} |