8 lines
195 B
Plaintext
Vendored
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
|
|
}
|
|
} |