blob: 5c954c4ee8cc1eb625aed07ef173a220934dce7d [file]
>>> open class A(val result: String) {
... fun foo() = result
... }
>>> class B : A("OK")
>>> B().foo()
OK