7 lines
135 B
Plaintext
Vendored
7 lines
135 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for fun foo" "true"
|
|
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
fun foo() {
|
|
val a: String?<caret>? = null
|
|
}
|