5 lines
198 B
Plaintext
Vendored
5 lines
198 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for fun foo" "true"
|
|
// ERROR: The integer literal does not conform to the expected type String
|
|
|
|
@Suppress(1, "REDUNDANT_NULLABLE")
|
|
fun foo(): String?<caret>? = null |