a13b66c58e
If no quick fix is available a special intention is shown
7 lines
169 B
Kotlin
7 lines
169 B
Kotlin
// "Suppress 'REDUNDANT_NULLABLE' for val (a, b)" "true"
|
|
|
|
fun foo() {
|
|
val (a, b) = Pair<String?<caret>?, String>("", "")
|
|
}
|
|
|
|
data class Pair<A, B>(val a: A, val b: B) |