blob: 35952ab527f74615753ae37ed441e587f54b7984 [file]
// "Implement interface" "true"
// WITH_RUNTIME
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
interface Base {
fun foo(x: Int): Int
fun bar(y: String) = y
}
class BaseImpl : Base {
override fun foo(x: Int): Int {
TODO("Not yet implemented")
}
}