Files
kotlin-fork/idea/scripting-support/testData/scratch/klass.kts
T
2019-10-08 15:02:32 +03:00

17 lines
179 B
Kotlin
Vendored

// REPL_MODE: ~REPL_MODE~
class MyClass {
fun foo() = 1
}
MyClass().foo()
interface I {
fun foo(): Int
}
val i = object: I {
override fun foo(): Int = 1
}
i.foo()