Test data fixed: replace trait with interface
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
open class Persistent(val p: String)
|
||||
trait Hierarchy<T: Persistent > where T : Hierarchy<T>
|
||||
interface Hierarchy<T: Persistent > where T : Hierarchy<T>
|
||||
|
||||
class Location(): Persistent("OK"), Hierarchy<Location>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user