Files
kotlin/idea/testData/quickfix/removeFinalUpperBound/function.kt
2016-09-10 08:11:23 +09:00

7 lines
146 B
Kotlin
Vendored

// "Remove final upper bound" "true"
data class DC(val x: Int, val y: String) {
fun <S : Int<caret>> foo(b: S) {
val a: S = b
}
}