blob: 64514c50d9b39a420ffbdd09e84fdeb2ef8fb408 [file]
open class Persistent(val p: String)
interface Hierarchy<T: Persistent > where T : Hierarchy<T>
class Location(): Persistent("OK"), Hierarchy<Location>
fun box(): String {
return Location().p
}