blob: b2cb4de6ae00bf65fc56ce079c110a1f7215dde2 [file] [log] [blame]
object Foo {
open class Bar(val bar: String)
}
class Baz: Foo.Bar("OK")
fun box(): String {
return Baz().bar
}