8 lines
200 B
Plaintext
Vendored
8 lines
200 B
Plaintext
Vendored
// "Suppress 'REDUNDANT_NULLABLE' for initializer " "true"
|
|
|
|
fun foo() {
|
|
var (a, b) = @Suppress("REDUNDANT_NULLABLE")
|
|
Pair<String??, String>("", "")
|
|
}
|
|
|
|
data class Pair<A, B>(val a: A, val b: B) |