JS backend: add cli test for creating metadata and ant test for library with metadata

This commit is contained in:
Michael Nedzelsky
2015-01-20 18:36:14 +03:00
parent 0050c9888d
commit 33cdf8c969
10 changed files with 90 additions and 0 deletions
@@ -0,0 +1,14 @@
package foo
import library.sample.*
var ok = "FAIL"
fun main(args: Array<String>) {
val x = ClassA().value
if (x == 100) {
ok = "OK"
}
}
fun box(): String = ok