blackBox() infrastructure

This commit is contained in:
Maxim Shafirov
2011-04-28 21:32:42 +04:00
parent af34bf9a7c
commit f7566abb5d
3 changed files with 37 additions and 4 deletions
+4
View File
@@ -9,3 +9,7 @@ class P1(x : Int, y : Y) : Abstract, X(x), Y by y {}
class P2(x : Int, y : Y) : X(x), Abstract, Y by y {}
class P3(x : Int, y : Y) : X(x), Y by y, Abstract {}
class P4(x : Int, y : Y) : Y by y, Abstract, X(x) {}
fun box() : String {
"OK"
}