Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/afterClassObject.kt
T

8 lines
196 B
Kotlin

// "Suppress 'REDUNDANT_NULLABLE' for companion object Companion of C" "true"
class C {
[suppress("REDUNDANT_NULLABLE")]
companion object {
var foo: String?<caret>? = null
}
}