blob: 1b86fb45c35e6ef70e339513d5ebb5ea6a54f272 [file]
interface DosFileAttributeView {
fun bar(): String
}
fun <V> foo(view: V): DosFileAttributeView {
view as DosFileAttributeView
return object : DosFileAttributeView by view {}
}
fun box() = foo(object : DosFileAttributeView {
override fun bar() = "OK"
}).bar()