do not copy js files from libraries in case of compile errors

This commit is contained in:
Michael Nedzelsky
2014-12-16 20:58:03 +03:00
parent b7806be8b5
commit d909a66d4d
5 changed files with 58 additions and 2 deletions
@@ -0,0 +1,7 @@
import library.sample.pairAdd
fun foo() {
val p = Pair1(10, 20)
val x = pairAdd(p)
println("x=$x")
}