Configuration: move scratch tests to separate module
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// REPL_MODE: true
|
||||
|
||||
class MyClass {
|
||||
fun foo() = 1
|
||||
}
|
||||
|
||||
MyClass().foo() // RESULT: res1: kotlin.Int = 1
|
||||
|
||||
interface I {
|
||||
fun foo(): Int
|
||||
}
|
||||
|
||||
val i = object: I {
|
||||
override fun foo(): Int = 1
|
||||
}
|
||||
i.foo() // RESULT: res4: kotlin.Int = 1
|
||||
Reference in New Issue
Block a user