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

6 lines
134 B
Plaintext
Vendored

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