Adjust test data after fixes about generic nullability

This commit is contained in:
Denis Zharkov
2015-08-07 15:17:16 +03:00
parent 4a3fbcc16e
commit e8f91e596c
24 changed files with 39 additions and 39 deletions
@@ -5,7 +5,7 @@ interface MyMap {
}
class A(val map: MyMap) {
fun <T> foo(`type`: I<T>) {
fun <T : Any> foo(`type`: I<T>) {
val value = map.get<caret><T>(`type`)
}
}
@@ -5,7 +5,7 @@ interface MyMap {
}
class A(val map: MyMap) {
fun <T> foo(`type`: I<T>) {
fun <T : Any> foo(`type`: I<T>) {
val value = map.get<caret>(`type`)
}
}