removing static type assertions work in progress

This commit is contained in:
Dmitry Jemerov
2015-10-07 12:19:37 +02:00
parent 8f87efc0a2
commit 1523d5bcbf
149 changed files with 514 additions and 867 deletions
+6 -4
View File
@@ -11,11 +11,13 @@ fun box(): String {
val z = object : A<String>() {
override fun foo(t: String) = "z"
}
val az: A<String> = Z
val a: A<String> = z
return when {
Z.foo("") != "Z" -> "Fail #1"
z.foo("") != "z" -> "Fail #2"
(Z : A<String>).foo("") != "Z" -> "Fail #3"
(z : A<String>).foo("") != "z" -> "Fail #4"
Z.foo("") != "Z" -> "Fail #1"
z.foo("") != "z" -> "Fail #2"
az.foo("") != "Z" -> "Fail #3"
a.foo("") != "z" -> "Fail #4"
else -> "OK"
}
}