Minor. Move tests

This commit is contained in:
Denis Zharkov
2015-11-12 11:40:59 +03:00
parent 83bf5daf7f
commit abf7ae547e
9 changed files with 57 additions and 57 deletions
@@ -0,0 +1,10 @@
class A : java.util.ArrayList<String>() {
override val size: Int get() = super.size + 56
}
fun box(): String {
val a = A()
if (a.size != 56) return "fail: ${a.size}"
return "OK"
}