Files
kotlin-fork/idea/testData/quickfix/suppress/declarationKinds/beforeMultiVal.kt
T
Andrey Breslav a13b66c58e 'Suppress warnings' as quick fix options
If no quick fix is available a special intention is shown
2013-09-24 06:58:41 -07:00

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)