KT-3008 Add tests for module wrappers

This commit is contained in:
Alexey Andreev
2016-04-20 12:33:09 +03:00
parent 0cfacfa44a
commit e38b83880f
10 changed files with 171 additions and 8 deletions
@@ -0,0 +1,2 @@
module1->
main->module1
@@ -0,0 +1,4 @@
fun box(): String {
assertEquals("bar", bar())
return "OK"
}
@@ -0,0 +1 @@
fun bar() = "bar"