6 lines
140 B
Plaintext
Vendored
6 lines
140 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for fun foo" "true"
|
|
|
|
class C {
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
fun foo(): String?<caret>? = null
|
|
} |