KT-13674 Add quickfix to remove the final upper bound

#KT-13674 Fixed
This commit is contained in:
shiraji
2016-09-09 13:47:47 +09:00
parent 3f2f79ef59
commit 7c3835bb77
7 changed files with 82 additions and 0 deletions
@@ -0,0 +1,7 @@
// "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
}
}