blob: 4eba690ced062c77609cbe4219558dc7348e86c5 [file] [log] [blame]
interface Foo {
fun bar(n: Int)
}
class Baz: Foo {
override fun bar(n: Int) {
}
}