5 lines
116 B
Kotlin
Vendored
5 lines
116 B
Kotlin
Vendored
class C {
|
|
val foo: String?
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
get(): String?? = null as Nothing??
|
|
} |