Files
kotlin-fork/compiler/testData/diagnostics/tests/suppress/manyWarnings/onPropertyAccessor.kt
T
2015-09-04 17:23:25 +03:00

5 lines
168 B
Kotlin
Vendored

class C {
val foo: String?
@Suppress("REDUNDANT_NULLABLE", "UNNECESSARY_NOT_NULL_ASSERTION")
get(): String?? = ""!! <!USELESS_CAST!>as String??<!>
}