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