9 lines
266 B
Plaintext
Vendored
9 lines
266 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for file ${file}" "true"
|
|
// ERROR: This annotation is not applicable to target 'file' and use site target '@file'
|
|
|
|
@file:Deprecated("Some")
|
|
@file:Suppress("REDUNDANT_NULLABLE")
|
|
|
|
package test
|
|
|
|
public fun foo(): String?<caret>? = null |