blob: eec8715e97375bcddd95998a966b978f31e042b3 [file] [log] [blame]
// "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
}
}