blob: a18d903cc5d2de4cfd83cc843aed2295b432d393 [file]
package foo
open class Super {
val foo = 23
}
class Sub : Super() {
fun foo() = 42
}