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