JS: move more test to box tests

This commit is contained in:
Alexey Andreev
2016-08-30 15:31:53 +03:00
parent 3801052460
commit 34bf3e6e56
196 changed files with 1162 additions and 1293 deletions
+13
View File
@@ -0,0 +1,13 @@
package foo
interface AL {
fun get(index: Int): Any? = null
}
class SmartArrayList() : AL {
}
fun box(): String {
val c = SmartArrayList()
return if (null == c.get(0)) return "OK" else "fail"
}