a3fdce8131
#KT-6070 fixed
6 lines
191 B
Kotlin
6 lines
191 B
Kotlin
class C {
|
|
suppress("REDUNDANT_NULLABLE", "UNNECESSARY_NOT_NULL_ASSERTION")
|
|
class object {
|
|
val foo: String?? = ""!! <!USELESS_CAST_STATIC_ASSERT_IS_FINE!>as String??<!>
|
|
}
|
|
} |