Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/classObject.kt.after
T
2015-09-04 17:23:25 +03:00

8 lines
195 B
Plaintext
Vendored

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