Move scripting jvm host tests to a separate project...

to solve problems with testing with direct dependency on proguarded compiler
This commit is contained in:
Ilya Chernikov
2019-05-17 14:41:47 +02:00
parent 1527ef7640
commit 37d859c122
13 changed files with 32 additions and 13 deletions
@@ -0,0 +1,4 @@
println("Hi from common")
var sharedVar = 2
@@ -0,0 +1,4 @@
println("Hi from middle")
sharedVar *= 2
@@ -0,0 +1,4 @@
val helloScriptName = "helloWithVal"
println("Hello from $helloScriptName script!")
@@ -0,0 +1,5 @@
class RequiredClass {
val value = "required"
}