Remove module integration-tests, merge into compiler-tests

This commit is contained in:
Alexander Udalov
2015-01-03 12:28:54 +03:00
parent cd79c4573d
commit 5c9750ae6b
147 changed files with 28 additions and 46 deletions
@@ -0,0 +1,14 @@
package foo
import library.sample.*
var ok = "FAIL"
fun main(args: Array<String>) {
val p = Pair(10, 20)
val x = pairAdd(p)
ok = "OK"
println("x=$x")
}
fun box(): String = ok