Drop ArrayGenTest, move test case to generated

This commit is contained in:
Alexander Udalov
2014-12-11 15:49:59 +03:00
parent 34d408eb7b
commit d71220f8b1
3 changed files with 14 additions and 36 deletions
@@ -0,0 +1,8 @@
class L<T>(var a: T) {}
fun foo() = L<Int>(5).a
fun box(): String {
val x: Any = foo()
return if (x is Integer) "OK" else "Fail $x"
}