7 lines
88 B
Kotlin
7 lines
88 B
Kotlin
val a: String?
|
|
get() = ""
|
|
|
|
fun main(args: Array<String>) {
|
|
val x = a<caret>!!
|
|
}
|