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
+7 -4
View File
@@ -13,11 +13,14 @@ class Z : B<Int>, C<String> {
fun box(): String {
val z = Z()
val c: C<String> = z
val b: B<Int> = z
val a: A<String, Int> = z
return when {
z.foo("", 0) != "Z" -> "Fail #1"
(z : C<String>).foo("", 0) != "Z" -> "Fail #2"
(z : B<Int>).foo("", 0) != "Z" -> "Fail #3"
(z : A<String, Int>).foo("", 0) != "Z" -> "Fail #4"
z.foo("", 0) != "Z" -> "Fail #1"
c.foo("", 0) != "Z" -> "Fail #2"
b.foo("", 0) != "Z" -> "Fail #3"
a.foo("", 0) != "Z" -> "Fail #4"
else -> "OK"
}
}