Files
kotlin-fork/idea/testData/quickfix/when/addRemainingBranchesInNonDefaultPackage.kt
T

9 lines
211 B
Kotlin
Vendored

// "Add remaining branches" "true"
// ERROR: Unresolved reference: TODO
// ERROR: Unresolved reference: TODO
package test
enum class Color { R, G, B }
fun test(c: Color) = wh<caret>en(c) {
Color.B -> 0xff
}