To green test: inheritance.jet

This commit is contained in:
Maxim Shafirov
2011-05-03 15:20:02 +04:00
parent a265c364a3
commit fe36a55a94
7 changed files with 42 additions and 43 deletions
+1 -3
View File
@@ -18,8 +18,6 @@ fun box() : String {
if (p.x + p.y != 239) return "FAIL #3"
val y = new Y(-1)
/*
val p1 = new P1(240, y)
if (p1.x + p1.y != 239) return "FAIL #4"
val p2 = new P2(240, y)
@@ -30,6 +28,6 @@ fun box() : String {
val p4 = new P4(240, y)
if (p4.x + p4.y != 239) return "FAIL #7"
*/
"OK"
}