blob: 7b36341464f65136770e73dd201f68d4e6b74ef7 [file] [log] [blame]
interface A {
fun foo(value : String) : Int = 0
fun bar() : String = "hello"
}
class C : A {
<caret>
}