11 lines
205 B
Plaintext
Vendored
11 lines
205 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for statement " "true"
|
|
|
|
fun foo() {
|
|
var v = Box<String?>()
|
|
@Suppress("REDUNDANT_NULLABLE")
|
|
(v: Box<String?<caret>?>)++
|
|
}
|
|
|
|
class Box<T> {
|
|
fun inc() = this
|
|
} |