849b8acbf8
Just in tests that changed after deprecation
5 lines
135 B
Kotlin
5 lines
135 B
Kotlin
class C {
|
|
val foo: String?
|
|
@suppress("REDUNDANT_NULLABLE")
|
|
get(): String?? = null <!USELESS_CAST!>as Nothing??<!>
|
|
} |