Add java8 test module and run configuration with initial test

This commit is contained in:
Michael Bogdanov
2015-04-17 16:08:57 +03:00
parent cc9322fbdd
commit 7e3403f602
10 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class Test : Simple {}
fun box(): String {
val test = Test().test("O")
if (test != "OK") return "fail $test"
return Simple.testStatic("O")
}