Fix nullability check (in case of explicitly nullable types constructed from ype variables)

This commit is contained in:
Alexey Sedunov
2013-02-13 18:15:23 +04:00
parent fc62a7dfa0
commit 1f8d42ab49
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,7 @@
import java.util.HashMap
class A<T: Any> {
fun main() {
HashMap<String, T>()[""]
}
}