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

7 lines
133 B
Plaintext
Vendored

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