Fixes to tests: forgotten package names and tests

This commit is contained in:
Pavel Punegov
2017-10-17 12:43:28 +03:00
parent a6af8aa11c
commit d56a4f8830
18 changed files with 33 additions and 30 deletions
@@ -0,0 +1,17 @@
package codegen.objectExpression.expr1
import kotlin.test.*
@Test fun runTest() {
val a = "a"
val x = object {
override fun toString(): String {
return foo(a) + foo("b")
}
fun foo(s: String) = s + s
}
println(x.toString())
}