Fix scratch testdata after introducing result vals into repl

This commit is contained in:
Ilya Chernikov
2018-12-05 12:20:47 +01:00
parent 8e72495ded
commit 6e27bc0fb3
10 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ class MyClass {
fun foo() = 1
}
MyClass().foo() // RESULT: 1
MyClass().foo() // RESULT: res1: kotlin.Int = 1
interface I {
fun foo(): Int
@@ -11,4 +11,4 @@ interface I {
val i = object: I {
override fun foo(): Int = 1
}
i.foo() // RESULT: 1
i.foo() // RESULT: res4: kotlin.Int = 1