blob: e233720b628874bb55083183d389a2e143dc6ae1 [file]
// WITH_STDLIB
open class Base(val bar: String)
class Foo(bar: String) : Base(bar) {
fun something() = bar.toUpperCase()
}
fun box() = Foo("ok").something()